home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / bin / automake-1.8 < prev    next >
Encoding:
Text File  |  2005-10-16  |  206.1 KB  |  7,241 lines

  1. #!/usr/bin/perl -w
  2. # -*- perl -*-
  3. # Generated from automake.in; do not edit by hand.
  4.  
  5. eval 'case $# in 0) exec /usr/bin/perl -S "$0";; *) exec /usr/bin/perl -S "$0" "$@";; esac'
  6.     if 0;
  7.  
  8. # automake - create Makefile.in from Makefile.am
  9. # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
  10. # 2003, 2004  Free Software Foundation, Inc.
  11.  
  12. # This program is free software; you can redistribute it and/or modify
  13. # it under the terms of the GNU General Public License as published by
  14. # the Free Software Foundation; either version 2, or (at your option)
  15. # any later version.
  16.  
  17. # This program is distributed in the hope that it will be useful,
  18. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  20. # GNU General Public License for more details.
  21.  
  22. # You should have received a copy of the GNU General Public License
  23. # along with this program; if not, write to the Free Software
  24. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
  25. # 02111-1307, USA.
  26.  
  27. # Originally written by David Mackenzie <djm@gnu.ai.mit.edu>.
  28. # Perl reimplementation by Tom Tromey <tromey@redhat.com>.
  29.  
  30. package Language;
  31.  
  32. BEGIN
  33. {
  34.   my $perllibdir = $ENV{'perllibdir'} || '/usr/share/automake-1.8';
  35.   unshift @INC, (split ':', $perllibdir);
  36.  
  37.   # Override SHELL.  This is required on DJGPP so that system() uses
  38.   # bash, not COMMAND.COM which doesn't quote arguments properly.
  39.   # Other systems aren't expected to use $SHELL when Automake
  40.   # runs, but it should be safe to drop the `if DJGPP' guard if
  41.   # it turns up other systems need the same thing.  After all,
  42.   # if SHELL is used, ./configure's SHELL is always better than
  43.   # the user's SHELL (which may be something like tcsh).
  44.   $ENV{'SHELL'} = '/bin/sh' if exists $ENV{'DJGPP'};
  45. }
  46.  
  47. use Automake::Struct;
  48. struct (# Short name of the language (c, f77...).
  49.         'name' => "\$",
  50.         # Nice name of the language (C, Fortran 77...).
  51.         'Name' => "\$",
  52.  
  53.     # List of configure variables which must be defined.
  54.     'config_vars' => '@',
  55.  
  56.         'ansi'    => "\$",
  57.     # `pure' is `1' or `'.  A `pure' language is one where, if
  58.     # all the files in a directory are of that language, then we
  59.     # do not require the C compiler or any code to call it.
  60.     'pure'   => "\$",
  61.  
  62.     'autodep' => "\$",
  63.  
  64.     # Name of the compiling variable (COMPILE).
  65.         'compiler'  => "\$",
  66.         # Content of the compiling variable.
  67.         'compile'  => "\$",
  68.         # Flag to require compilation without linking (-c).
  69.         'compile_flag' => "\$",
  70.         'extensions' => '@',
  71.     # A subroutine to compute a list of possible extensions of
  72.     # the product given the input extensions.
  73.     # (defaults to a subroutine which returns ('.$(OBJEXT)', '.lo'))
  74.     'output_extensions' => "\$",
  75.     # A list of flag variables used in 'compile'.
  76.     # (defaults to [])
  77.         'flags' => "@",
  78.  
  79.     # The file to use when generating rules for this language.
  80.     # The default is 'depend2'.
  81.     'rule_file' => "\$",
  82.  
  83.         # Name of the linking variable (LINK).
  84.         'linker' => "\$",
  85.         # Content of the linking variable.
  86.         'link' => "\$",
  87.  
  88.         # Name of the linker variable (LD).
  89.         'lder' => "\$",
  90.         # Content of the linker variable ($(CC)).
  91.         'ld' => "\$",
  92.  
  93.         # Flag to specify the output file (-o).
  94.         'output_flag' => "\$",
  95.         '_finish' => "\$",
  96.  
  97.     # This is a subroutine which is called whenever we finally
  98.     # determine the context in which a source file will be
  99.     # compiled.
  100.     '_target_hook' => "\$");
  101.  
  102.  
  103. sub finish ($)
  104. {
  105.   my ($self) = @_;
  106.   if (defined $self->_finish)
  107.     {
  108.       &{$self->_finish} ();
  109.     }
  110. }
  111.  
  112. sub target_hook ($$$$)
  113. {
  114.     my ($self) = @_;
  115.     if (defined $self->_target_hook)
  116.     {
  117.     &{$self->_target_hook} (@_);
  118.     }
  119. }
  120.  
  121. package Automake;
  122.  
  123. use strict;
  124. use Automake::Config;
  125. use Automake::General;
  126. use Automake::XFile;
  127. use Automake::Channels;
  128. use Automake::ChannelDefs;
  129. use Automake::Configure_ac;
  130. use Automake::FileUtils;
  131. use Automake::Location;
  132. use Automake::Condition qw/TRUE FALSE/;
  133. use Automake::DisjConditions;
  134. use Automake::Options;
  135. use Automake::Version;
  136. use Automake::Variable;
  137. use Automake::VarDef;
  138. use Automake::Rule;
  139. use Automake::RuleDef;
  140. use Automake::Wrap 'makefile_wrap';
  141. use File::Basename;
  142. use Carp;
  143.  
  144. ## ----------- ##
  145. ## Constants.  ##
  146. ## ----------- ##
  147.  
  148. # Some regular expressions.  One reason to put them here is that it
  149. # makes indentation work better in Emacs.
  150.  
  151. # Writing singled-quoted-$-terminated regexes is a pain because
  152. # perl-mode thinks of $' as the ${'} variable (instead of a $ followed
  153. # by a closing quote.  Letting perl-mode think the quote is not closed
  154. # leads to all sort of misindentations.  On the other hand, defining
  155. # regexes as double-quoted strings is far less readable.  So usually
  156. # we will write:
  157. #
  158. #  $REGEX = '^regex_value' . "\$";
  159.  
  160. my $IGNORE_PATTERN = '^\s*##([^#\n].*)?\n';
  161. my $WHITE_PATTERN = '^\s*' . "\$";
  162. my $COMMENT_PATTERN = '^#';
  163. my $TARGET_PATTERN='[$a-zA-Z_.@%][-.a-zA-Z0-9_(){}/$+@%]*';
  164. # A rule has three parts: a list of targets, a list of dependencies,
  165. # and optionally actions.
  166. my $RULE_PATTERN =
  167.   "^($TARGET_PATTERN(?:(?:\\\\\n|\\s)+$TARGET_PATTERN)*) *:([^=].*|)\$";
  168.  
  169. # Only recognize leading spaces, not leading tabs.  If we recognize
  170. # leading tabs here then we need to make the reader smarter, because
  171. # otherwise it will think rules like `foo=bar; \' are errors.
  172. my $ASSIGNMENT_PATTERN = '^ *([^ \t=:+]*)\s*([:+]?)=\s*(.*)' . "\$";
  173. # This pattern recognizes a Gnits version id and sets $1 if the
  174. # release is an alpha release.  We also allow a suffix which can be
  175. # used to extend the version number with a "fork" identifier.
  176. my $GNITS_VERSION_PATTERN = '\d+\.\d+([a-z]|\.\d+)?(-[A-Za-z0-9]+)?';
  177.  
  178. my $IF_PATTERN = '^if\s+(!?)\s*([A-Za-z][A-Za-z0-9_]*)\s*(?:#.*)?' . "\$";
  179. my $ELSE_PATTERN =
  180.   '^else(?:\s+(!?)\s*([A-Za-z][A-Za-z0-9_]*))?\s*(?:#.*)?' . "\$";
  181. my $ENDIF_PATTERN =
  182.   '^endif(?:\s+(!?)\s*([A-Za-z][A-Za-z0-9_]*))?\s*(?:#.*)?' . "\$";
  183. my $PATH_PATTERN = '(\w|[/.-])+';
  184. # This will pass through anything not of the prescribed form.
  185. my $INCLUDE_PATTERN = ('^include\s+'
  186.                . '((\$\(top_srcdir\)/' . $PATH_PATTERN . ')'
  187.                . '|(\$\(srcdir\)/' . $PATH_PATTERN . ')'
  188.                . '|([^/\$]' . $PATH_PATTERN . '))\s*(#.*)?' . "\$");
  189.  
  190. # Match `-d' as a command-line argument in a string.
  191. my $DASH_D_PATTERN = "(^|\\s)-d(\\s|\$)";
  192. # Directories installed during 'install-exec' phase.
  193. my $EXEC_DIR_PATTERN =
  194.   '^(?:bin|sbin|libexec|sysconf|localstate|lib|pkglib|.*exec.*)' . "\$";
  195.  
  196. # Values for AC_CANONICAL_*
  197. use constant AC_CANONICAL_HOST   => 1;
  198. use constant AC_CANONICAL_SYSTEM => 2;
  199.  
  200. # Values indicating when something should be cleaned.
  201. use constant MOSTLY_CLEAN     => 0;
  202. use constant CLEAN            => 1;
  203. use constant DIST_CLEAN       => 2;
  204. use constant MAINTAINER_CLEAN => 3;
  205.  
  206. # Libtool files.
  207. my @libtool_files = qw(ltmain.sh config.guess config.sub);
  208. # ltconfig appears here for compatibility with old versions of libtool.
  209. my @libtool_sometimes = qw(ltconfig ltcf-c.sh ltcf-cxx.sh ltcf-gcj.sh);
  210.  
  211. # Commonly found files we look for and automatically include in
  212. # DISTFILES.
  213. my @common_files =
  214.     (qw(ABOUT-GNU ABOUT-NLS AUTHORS BACKLOG COPYING COPYING.DOC COPYING.LIB
  215.     COPYING.LESSER ChangeLog INSTALL NEWS README THANKS TODO
  216.     ansi2knr.1 ansi2knr.c compile config.guess config.rpath config.sub
  217.     depcomp elisp-comp install-sh libversion.in mdate-sh missing
  218.     mkinstalldirs py-compile texinfo.tex ylwrap),
  219.      @libtool_files, @libtool_sometimes);
  220.  
  221. # Commonly used files we auto-include, but only sometimes.  This list
  222. # is used for the --help output only.
  223. my @common_sometimes =
  224.   qw(aclocal.m4 acconfig.h config.h.top config.h.bot configure
  225.      configure.ac configure.in stamp-vti);
  226.  
  227. # Standard directories from the GNU Coding Standards, and additional
  228. # pkg* directories from Automake.  Stored in a hash for fast member check.
  229. my %standard_prefix =
  230.     map { $_ => 1 } (qw(bin data exec include info lib libexec lisp
  231.             localstate man man1 man2 man3 man4 man5 man6
  232.             man7 man8 man9 oldinclude pkgdatadir
  233.             pkgincludedir pkglibdir sbin sharedstate
  234.             sysconf));
  235.  
  236. # Copyright on generated Makefile.ins.
  237. my $gen_copyright = "\
  238. # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
  239. # 2003, 2004  Free Software Foundation, Inc.
  240. # This Makefile.in is free software; the Free Software Foundation
  241. # gives unlimited permission to copy and/or distribute it,
  242. # with or without modifications, as long as this notice is preserved.
  243.  
  244. # This program is distributed in the hope that it will be useful,
  245. # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
  246. # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
  247. # PARTICULAR PURPOSE.
  248. ";
  249.  
  250. # These constants are returned by lang_*_rewrite functions.
  251. # LANG_SUBDIR means that the resulting object file should be in a
  252. # subdir if the source file is.  In this case the file name cannot
  253. # have `..' components.
  254. use constant LANG_IGNORE  => 0;
  255. use constant LANG_PROCESS => 1;
  256. use constant LANG_SUBDIR  => 2;
  257.  
  258. # These are used when keeping track of whether an object can be built
  259. # by two different paths.
  260. use constant COMPILE_LIBTOOL  => 1;
  261. use constant COMPILE_ORDINARY => 2;
  262.  
  263. # We can't always associate a location to a variable or a rule,
  264. # when its defined by Automake.  We use INTERNAL in this case.
  265. use constant INTERNAL => new Automake::Location;
  266.  
  267.  
  268. ## ---------------------------------- ##
  269. ## Variables related to the options.  ##
  270. ## ---------------------------------- ##
  271.  
  272. # TRUE if we should always generate Makefile.in.
  273. my $force_generation = 1;
  274.  
  275. # From the Perl manual.
  276. my $symlink_exists = (eval 'symlink ("", "");', $@ eq '');
  277.  
  278. # TRUE if missing standard files should be installed.
  279. my $add_missing = 0;
  280.  
  281. # TRUE if we should copy missing files; otherwise symlink if possible.
  282. my $copy_missing = 0;
  283.  
  284. # TRUE if we should always update files that we know about.
  285. my $force_missing = 0;
  286.  
  287.  
  288. ## ---------------------------------------- ##
  289. ## Variables filled during files scanning.  ##
  290. ## ---------------------------------------- ##
  291.  
  292. # Name of the configure.ac file.
  293. my $configure_ac;
  294.  
  295. # Files found by scanning configure.ac for LIBOBJS.
  296. my %libsources = ();
  297.  
  298. # Names used in AC_CONFIG_HEADER call.
  299. my @config_headers = ();
  300.  
  301. # Names used in AC_CONFIG_LINKS call.
  302. my @config_links = ();
  303.  
  304. # Directory where output files go.  Actually, output files are
  305. # relative to this directory.
  306. my $output_directory;
  307.  
  308. # List of Makefile.am's to process, and their corresponding outputs.
  309. my @input_files = ();
  310. my %output_files = ();
  311.  
  312. # Complete list of Makefile.am's that exist.
  313. my @configure_input_files = ();
  314.  
  315. # List of files in AC_CONFIG_FILES/AC_OUTPUT without Makefile.am's,
  316. # and their outputs.
  317. my @other_input_files = ();
  318. # Where each AC_CONFIG_FILES/AC_OUTPUT/AC_CONFIG_LINK/AC_CONFIG_HEADER appears.
  319. # The keys are the files created by these macros.
  320. my %ac_config_files_location = ();
  321.  
  322. # List of directories to search for configure-required files.  This
  323. # can be set by AC_CONFIG_AUX_DIR.
  324. my @config_aux_path = qw(. .. ../..);
  325. my $config_aux_dir = '';
  326. my $config_aux_dir_set_in_configure_in = 0;
  327.  
  328. # Whether AM_GNU_GETTEXT has been seen in configure.ac.
  329. my $seen_gettext = 0;
  330. # Whether AM_GNU_GETTEXT([external]) is used.
  331. my $seen_gettext_external = 0;
  332. # Where AM_GNU_GETTEXT appears.
  333. my $ac_gettext_location;
  334.  
  335. # TRUE if we've seen AC_CANONICAL_(HOST|SYSTEM).
  336. my $seen_canonical = 0;
  337. my $canonical_location;
  338.  
  339. # Where AM_MAINTAINER_MODE appears.
  340. my $seen_maint_mode;
  341.  
  342. # Actual version we've seen.
  343. my $package_version = '';
  344.  
  345. # Where version is defined.
  346. my $package_version_location;
  347.  
  348. # TRUE if we've seen AC_ENABLE_MULTILIB.
  349. my $seen_multilib = 0;
  350.  
  351. # TRUE if we've seen AM_PROG_CC_C_O
  352. my $seen_cc_c_o = 0;
  353.  
  354. # Where AM_INIT_AUTOMAKE is called;
  355. my $seen_init_automake = 0;
  356.  
  357. # TRUE if we've seen AM_AUTOMAKE_VERSION.
  358. my $seen_automake_version = 0;
  359.  
  360. # Hash table of discovered configure substitutions.  Keys are names,
  361. # values are `FILE:LINE' strings which are used by error message
  362. # generation.
  363. my %configure_vars = ();
  364.  
  365. # Files included by $configure_ac.
  366. my @configure_deps = ();
  367.  
  368. # Greatest timestamp of configure's dependencies.
  369. my $configure_deps_greatest_timestamp = 0;
  370.  
  371. # Hash table of AM_CONDITIONAL variables seen in configure.
  372. my %configure_cond = ();
  373.  
  374. # This maps extensions onto language names.
  375. my %extension_map = ();
  376.  
  377. # List of the DIST_COMMON files we discovered while reading
  378. # configure.in
  379. my $configure_dist_common = '';
  380.  
  381. # This maps languages names onto objects.
  382. my %languages = ();
  383.  
  384. # List of targets we must always output.
  385. # FIXME: Complete, and remove falsely required targets.
  386. my %required_targets =
  387.   (
  388.    'all'          => 1,
  389.    'dvi'      => 1,
  390.    'pdf'      => 1,
  391.    'ps'          => 1,
  392.    'info'      => 1,
  393.    'install-info' => 1,
  394.    'install'      => 1,
  395.    'install-data' => 1,
  396.    'install-exec' => 1,
  397.    'uninstall'    => 1,
  398.  
  399.    # FIXME: Not required, temporary hacks.
  400.    # Well, actually they are sort of required: the -recursive
  401.    # targets will run them anyway...
  402.    'dvi-am'          => 1,
  403.    'pdf-am'          => 1,
  404.    'ps-am'           => 1,
  405.    'info-am'         => 1,
  406.    'install-data-am' => 1,
  407.    'install-exec-am' => 1,
  408.    'installcheck-am' => 1,
  409.    'uninstall-am' => 1,
  410.  
  411.    'install-man' => 1,
  412.   );
  413.  
  414. # This is set to 1 when Automake needs to be run again.
  415. # (For instance, this happens when an auxiliary file such as
  416. # depcomp is added after the toplevel Makefile.in -- which
  417. # should distribute depcomp -- has been generated.)
  418. my $automake_needs_to_reprocess_all_files = 0;
  419.  
  420. # If a file name appears as a key in this hash, then it has already
  421. # been checked for.  This variable is local to the "require file"
  422. # functions.
  423. my %require_file_found = ();
  424.  
  425. # The name of the Makefile currently being processed.
  426. my $am_file = 'BUG';
  427.  
  428.  
  429. ################################################################
  430.  
  431. ## ------------------------------------------ ##
  432. ## Variables reset by &initialize_per_input.  ##
  433. ## ------------------------------------------ ##
  434.  
  435. # Basename and relative dir of the input file.
  436. my $am_file_name;
  437. my $am_relative_dir;
  438.  
  439. # Same but wrt Makefile.in.
  440. my $in_file_name;
  441. my $relative_dir;
  442.  
  443. # Greatest timestamp of the output's dependencies (excluding
  444. # configure's dependencies).
  445. my $output_deps_greatest_timestamp;
  446.  
  447. # These two variables are used when generating each Makefile.in.
  448. # They hold the Makefile.in until it is ready to be printed.
  449. my $output_rules;
  450. my $output_vars;
  451. my $output_trailer;
  452. my $output_all;
  453. my $output_header;
  454.  
  455. # This is the conditional stack, updated on if/else/endif, and
  456. # used to build Condition objects.
  457. my @cond_stack;
  458.  
  459. # This holds the set of included files.
  460. my @include_stack;
  461.  
  462. # This holds a list of directories which we must create at `dist'
  463. # time.  This is used in some strange scenarios involving weird
  464. # AC_OUTPUT commands.
  465. my %dist_dirs;
  466.  
  467. # List of dependencies for the obvious targets.
  468. my @all;
  469. my @check;
  470. my @check_tests;
  471.  
  472. # Keys in this hash table are files to delete.  The associated
  473. # value tells when this should happen (MOSTLY_CLEAN, DIST_CLEAN, etc.)
  474. my %clean_files;
  475.  
  476. # Keys in this hash table are object files or other files in
  477. # subdirectories which need to be removed.  This only holds files
  478. # which are created by compilations.  The value in the hash indicates
  479. # when the file should be removed.
  480. my %compile_clean_files;
  481.  
  482. # Keys in this hash table are directories where we expect to build a
  483. # libtool object.  We use this information to decide what directories
  484. # to delete.
  485. my %libtool_clean_directories;
  486.  
  487. # Value of `$(SOURCES)', used by tags.am.
  488. my @sources;
  489. # Sources which go in the distribution.
  490. my @dist_sources;
  491.  
  492. # This hash maps object file names onto their corresponding source
  493. # file names.  This is used to ensure that each object is created
  494. # by a single source file.
  495. my %object_map;
  496.  
  497. # This hash maps object file names onto an integer value representing
  498. # whether this object has been built via ordinary compilation or
  499. # libtool compilation (the COMPILE_* constants).
  500. my %object_compilation_map;
  501.  
  502.  
  503. # This keeps track of the directories for which we've already
  504. # created dirstamp code.
  505. my %directory_map;
  506.  
  507. # All .P files.
  508. my %dep_files;
  509.  
  510. # This is a list of all targets to run during "make dist".
  511. my @dist_targets;
  512.  
  513. # Keys in this hash are the basenames of files which must depend on
  514. # ansi2knr.  Values are either the empty string, or the directory in
  515. # which the ANSI source file appears; the directory must have a
  516. # trailing `/'.
  517. my %de_ansi_files;
  518.  
  519. # This is the name of the redirect `all' target to use.
  520. my $all_target;
  521.  
  522. # This keeps track of which extensions we've seen (that we care
  523. # about).
  524. my %extension_seen;
  525.  
  526. # This is random scratch space for the language finish functions.
  527. # Don't randomly overwrite it; examine other uses of keys first.
  528. my %language_scratch;
  529.  
  530. # We keep track of which objects need special (per-executable)
  531. # handling on a per-language basis.
  532. my %lang_specific_files;
  533.  
  534. # This is set when `handle_dist' has finished.  Once this happens,
  535. # we should no longer push on dist_common.
  536. my $handle_dist_run;
  537.  
  538. # Used to store a set of linkers needed to generate the sources currently
  539. # under consideration.
  540. my %linkers_used;
  541.  
  542. # True if we need `LINK' defined.  This is a hack.
  543. my $need_link;
  544.  
  545. # Was get_object_extension run?
  546. # FIXME: This is a hack. a better switch should be found.
  547. my $get_object_extension_was_run;
  548.  
  549. ################################################################
  550.  
  551. # var_SUFFIXES_trigger ($TYPE, $VALUE)
  552. # ------------------------------------
  553. # This is called by Automake::Variable::define() when SUFFIXES
  554. # is defined ($TYPE eq '') or appended ($TYPE eq '+').
  555. # The work here needs to be performed as a side-effect of the
  556. # macro_define() call because SUFFIXES definitions impact
  557. # on $KNOWN_EXTENSIONS_PATTERN which is used used when parsing
  558. # the input am file.
  559. sub var_SUFFIXES_trigger ($$)
  560. {
  561.     my ($type, $value) = @_;
  562.     accept_extensions (split (' ', $value));
  563. }
  564. Automake::Variable::hook ('SUFFIXES', \&var_SUFFIXES_trigger);
  565.  
  566. ################################################################
  567.  
  568. ## --------------------------------- ##
  569. ## Forward subroutine declarations.  ##
  570. ## --------------------------------- ##
  571. sub register_language (%);
  572. sub file_contents_internal ($$$%);
  573. sub define_files_variable ($\@$$);
  574.  
  575.  
  576. # &initialize_per_input ()
  577. # ------------------------
  578. # (Re)-Initialize per-Makefile.am variables.
  579. sub initialize_per_input ()
  580. {
  581.     reset_local_duplicates ();
  582.  
  583.     $am_file_name = '';
  584.     $am_relative_dir = '';
  585.  
  586.     $in_file_name = '';
  587.     $relative_dir = '';
  588.  
  589.     $output_deps_greatest_timestamp = 0;
  590.  
  591.     $output_rules = '';
  592.     $output_vars = '';
  593.     $output_trailer = '';
  594.     $output_all = '';
  595.     $output_header = '';
  596.  
  597.     Automake::Options::reset;
  598.     Automake::Variable::reset;
  599.     Automake::Rule::reset;
  600.  
  601.     @cond_stack = ();
  602.  
  603.     @include_stack = ();
  604.  
  605.     %dist_dirs = ();
  606.  
  607.     @all = ();
  608.     @check = ();
  609.     @check_tests = ();
  610.  
  611.     %clean_files = ();
  612.  
  613.     @sources = ();
  614.     @dist_sources = ();
  615.  
  616.     %object_map = ();
  617.     %object_compilation_map = ();
  618.  
  619.     %directory_map = ();
  620.  
  621.     %dep_files = ();
  622.  
  623.     @dist_targets = ();
  624.  
  625.     %de_ansi_files = ();
  626.  
  627.     $all_target = '';
  628.  
  629.     %extension_seen = ();
  630.  
  631.     %language_scratch = ();
  632.  
  633.     %lang_specific_files = ();
  634.  
  635.     $handle_dist_run = 0;
  636.  
  637.     $need_link = 0;
  638.  
  639.     $get_object_extension_was_run = 0;
  640.  
  641.     %compile_clean_files = ();
  642.  
  643.     # We always include `.'.  This isn't strictly correct.
  644.     %libtool_clean_directories = ('.' => 1);
  645. }
  646.  
  647.  
  648. ################################################################
  649.  
  650. # Initialize our list of languages that are internally supported.
  651.  
  652. # C.
  653. register_language ('name' => 'c',
  654.            'Name' => 'C',
  655.            'config_vars' => ['CC'],
  656.            'ansi' => 1,
  657.            'autodep' => '',
  658.            'flags' => ['CFLAGS', 'CPPFLAGS'],
  659.            'compiler' => 'COMPILE',
  660.            'compile' => '$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)',
  661.            'lder' => 'CCLD',
  662.            'ld' => '$(CC)',
  663.            'linker' => 'LINK',
  664.            'link' => '$(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@',
  665.            'compile_flag' => '-c',
  666.            'extensions' => ['.c'],
  667.            '_finish' => \&lang_c_finish);
  668.  
  669. # C++.
  670. register_language ('name' => 'cxx',
  671.            'Name' => 'C++',
  672.            'config_vars' => ['CXX'],
  673.            'linker' => 'CXXLINK',
  674.            'link' => '$(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@',
  675.            'autodep' => 'CXX',
  676.            'flags' => ['CXXFLAGS', 'CPPFLAGS'],
  677.            'compile' => '$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)',
  678.            'compiler' => 'CXXCOMPILE',
  679.            'compile_flag' => '-c',
  680.            'output_flag' => '-o',
  681.            'lder' => 'CXXLD',
  682.            'ld' => '$(CXX)',
  683.            'pure' => 1,
  684.            'extensions' => ['.c++', '.cc', '.cpp', '.cxx', '.C']);
  685.  
  686. # Objective C.
  687. register_language ('name' => 'objc',
  688.            'Name' => 'Objective C',
  689.            'config_vars' => ['OBJC'],
  690.            'linker' => 'OBJCLINK',,
  691.             'link' => '$(OBJCLD) $(AM_OBJCFLAGS) $(OBJCFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@',
  692.            'autodep' => 'OBJC',
  693.            'flags' => ['OBJCFLAGS', 'CPPFLAGS'],
  694.            'compile' => '$(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS)',
  695.            'compiler' => 'OBJCCOMPILE',
  696.            'compile_flag' => '-c',
  697.            'output_flag' => '-o',
  698.            'lder' => 'OBJCLD',
  699.            'ld' => '$(OBJC)',
  700.            'pure' => 1,
  701.            'extensions' => ['.m']);
  702.  
  703. # Headers.
  704. register_language ('name' => 'header',
  705.            'Name' => 'Header',
  706.            'extensions' => ['.h', '.H', '.hxx', '.h++', '.hh',
  707.                     '.hpp', '.inc'],
  708.            # No output.
  709.            'output_extensions' => sub { return () },
  710.            # Nothing to do.
  711.            '_finish' => sub { });
  712.  
  713. # Yacc (C & C++).
  714. register_language ('name' => 'yacc',
  715.            'Name' => 'Yacc',
  716.            'config_vars' => ['YACC'],
  717.            'flags' => ['YFLAGS'],
  718.            'compile' => '$(YACC) $(YFLAGS) $(AM_YFLAGS)',
  719.            'compiler' => 'YACCCOMPILE',
  720.            'extensions' => ['.y'],
  721.            'output_extensions' => sub { (my $ext = $_[0]) =~ tr/y/c/;
  722.                         return ($ext,) },
  723.            'rule_file' => 'yacc',
  724.            '_finish' => \&lang_yacc_finish,
  725.            '_target_hook' => \&lang_yacc_target_hook);
  726. register_language ('name' => 'yaccxx',
  727.            'Name' => 'Yacc (C++)',
  728.            'config_vars' => ['YACC'],
  729.            'rule_file' => 'yacc',
  730.            'flags' => ['YFLAGS'],
  731.            'compiler' => 'YACCCOMPILE',
  732.            'compile' => '$(YACC) $(YFLAGS) $(AM_YFLAGS)',
  733.            'extensions' => ['.y++', '.yy', '.yxx', '.ypp'],
  734.            'output_extensions' => sub { (my $ext = $_[0]) =~ tr/y/c/;
  735.                         return ($ext,) },
  736.            '_finish' => \&lang_yacc_finish,
  737.            '_target_hook' => \&lang_yacc_target_hook);
  738.  
  739. # Lex (C & C++).
  740. register_language ('name' => 'lex',
  741.            'Name' => 'Lex',
  742.            'config_vars' => ['LEX'],
  743.            'rule_file' => 'lex',
  744.            'flags' => ['LFLAGS'],
  745.            'compile' => '$(LEX) $(LFLAGS) $(AM_LFLAGS)',
  746.            'compiler' => 'LEXCOMPILE',
  747.            'extensions' => ['.l'],
  748.            'output_extensions' => sub { (my $ext = $_[0]) =~ tr/l/c/;
  749.                         return ($ext,) },
  750.            '_finish' => \&lang_lex_finish,
  751.            '_target_hook' => \&lang_lex_target_hook);
  752. register_language ('name' => 'lexxx',
  753.            'Name' => 'Lex (C++)',
  754.            'config_vars' => ['LEX'],
  755.            'rule_file' => 'lex',
  756.            'flags' => ['LFLAGS'],
  757.            'compile' => '$(LEX) $(LFLAGS) $(AM_LFLAGS)',
  758.            'compiler' => 'LEXCOMPILE',
  759.            'extensions' => ['.l++', '.ll', '.lxx', '.lpp'],
  760.            'output_extensions' => sub { (my $ext = $_[0]) =~ tr/l/c/;
  761.                         return ($ext,) },
  762.            '_finish' => \&lang_lex_finish,
  763.            '_target_hook' => \&lang_lex_target_hook);
  764.  
  765. # Assembler.
  766. register_language ('name' => 'asm',
  767.            'Name' => 'Assembler',
  768.            'config_vars' => ['CCAS', 'CCASFLAGS'],
  769.  
  770.            'flags' => ['CCASFLAGS'],
  771.            # Users can set AM_ASFLAGS to includes DEFS, INCLUDES,
  772.            # or anything else required.  They can also set AS.
  773.            'compile' => '$(CCAS) $(AM_CCASFLAGS) $(CCASFLAGS)',
  774.            'compiler' => 'CCASCOMPILE',
  775.            'compile_flag' => '-c',
  776.            'extensions' => ['.s', '.S'],
  777.  
  778.            # With assembly we still use the C linker.
  779.            '_finish' => \&lang_c_finish);
  780.  
  781. # Fortran 77
  782. register_language ('name' => 'f77',
  783.            'Name' => 'Fortran 77',
  784.            'linker' => 'F77LINK',
  785.            'link' => '$(F77LD) $(AM_FFLAGS) $(FFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@',
  786.            'flags' => ['FFLAGS'],
  787.            'compile' => '$(F77) $(AM_FFLAGS) $(FFLAGS)',
  788.            'compiler' => 'F77COMPILE',
  789.            'compile_flag' => '-c',
  790.            'output_flag' => '-o',
  791.            'lder' => 'F77LD',
  792.            'ld' => '$(F77)',
  793.            'pure' => 1,
  794.            'extensions' => ['.f', '.for', '.f90']);
  795.  
  796. # Preprocessed Fortran 77
  797. #
  798. # The current support for preprocessing Fortran 77 just involves
  799. # passing `$(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS)
  800. # $(CPPFLAGS)' as additional flags to the Fortran 77 compiler, since
  801. # this is how GNU Make does it; see the `GNU Make Manual, Edition 0.51
  802. # for `make' Version 3.76 Beta' (specifically, from info file
  803. # `(make)Catalogue of Rules').
  804. #
  805. # A better approach would be to write an Autoconf test
  806. # (i.e. AC_PROG_FPP) for a Fortran 77 preprocessor, because not all
  807. # Fortran 77 compilers know how to do preprocessing.  The Autoconf
  808. # macro AC_PROG_FPP should test the Fortran 77 compiler first for
  809. # preprocessing capabilities, and then fall back on cpp (if cpp were
  810. # available).
  811. register_language ('name' => 'ppf77',
  812.            'Name' => 'Preprocessed Fortran 77',
  813.            'config_vars' => ['F77'],
  814.            'linker' => 'F77LINK',
  815.            'link' => '$(F77LD) $(AM_FFLAGS) $(FFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@',
  816.            'lder' => 'F77LD',
  817.            'ld' => '$(F77)',
  818.            'flags' => ['FFLAGS', 'CPPFLAGS'],
  819.            'compiler' => 'PPF77COMPILE',
  820.            'compile' => '$(F77) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_FFLAGS) $(FFLAGS)',
  821.            'compile_flag' => '-c',
  822.            'output_flag' => '-o',
  823.            'pure' => 1,
  824.            'extensions' => ['.F']);
  825.  
  826. # Ratfor.
  827. register_language ('name' => 'ratfor',
  828.            'Name' => 'Ratfor',
  829.            'config_vars' => ['F77'],
  830.            'linker' => 'F77LINK',
  831.            'link' => '$(F77LD) $(AM_FFLAGS) $(FFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@',
  832.            'lder' => 'F77LD',
  833.            'ld' => '$(F77)',
  834.            'flags' => ['RFLAGS', 'FFLAGS'],
  835.            # FIXME also FFLAGS.
  836.            'compile' => '$(F77) $(AM_FFLAGS) $(FFLAGS) $(AM_RFLAGS) $(RFLAGS)',
  837.            'compiler' => 'RCOMPILE',
  838.            'compile_flag' => '-c',
  839.            'output_flag' => '-o',
  840.            'pure' => 1,
  841.            'extensions' => ['.r']);
  842.  
  843. # Java via gcj.
  844. register_language ('name' => 'java',
  845.            'Name' => 'Java',
  846.            'config_vars' => ['GCJ'],
  847.            'linker' => 'GCJLINK',
  848.            'link' => '$(GCJLD) $(AM_GCJFLAGS) $(GCJFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@',
  849.            'autodep' => 'GCJ',
  850.            'flags' => ['GCJFLAGS'],
  851.            'compile' => '$(GCJ) $(AM_GCJFLAGS) $(GCJFLAGS)',
  852.            'compiler' => 'GCJCOMPILE',
  853.            'compile_flag' => '-c',
  854.            'output_flag' => '-o',
  855.            'lder' => 'GCJLD',
  856.            'ld' => '$(GCJ)',
  857.            'pure' => 1,
  858.            'extensions' => ['.java', '.class', '.zip', '.jar']);
  859.  
  860. ################################################################
  861.  
  862. # Error reporting functions.
  863.  
  864. # err_am ($MESSAGE, [%OPTIONS])
  865. # -----------------------------
  866. # Uncategorized errors about the current Makefile.am.
  867. sub err_am ($;%)
  868. {
  869.   msg_am ('error', @_);
  870. }
  871.  
  872. # err_ac ($MESSAGE, [%OPTIONS])
  873. # -----------------------------
  874. # Uncategorized errors about configure.ac.
  875. sub err_ac ($;%)
  876. {
  877.   msg_ac ('error', @_);
  878. }
  879.  
  880. # msg_am ($CHANNEL, $MESSAGE, [%OPTIONS])
  881. # ---------------------------------------
  882. # Messages about about the current Makefile.am.
  883. sub msg_am ($$;%)
  884. {
  885.   my ($channel, $msg, %opts) = @_;
  886.   msg $channel, "${am_file}.am", $msg, %opts;
  887. }
  888.  
  889. # msg_ac ($CHANNEL, $MESSAGE, [%OPTIONS])
  890. # ---------------------------------------
  891. # Messages about about configure.ac.
  892. sub msg_ac ($$;%)
  893. {
  894.   my ($channel, $msg, %opts) = @_;
  895.   msg $channel, $configure_ac, $msg, %opts;
  896. }
  897.  
  898. ################################################################
  899.  
  900. # subst ($TEXT)
  901. # -------------
  902. # Return a configure-style substitution using the indicated text.
  903. # We do this to avoid having the substitutions directly in automake.in;
  904. # when we do that they are sometimes removed and this causes confusion
  905. # and bugs.
  906. sub subst ($)
  907. {
  908.     my ($text) = @_;
  909.     return '@' . $text . '@';
  910. }
  911.  
  912. ################################################################
  913.  
  914.  
  915. # $BACKPATH
  916. # &backname ($REL-DIR)
  917. # --------------------
  918. # If I `cd $REL-DIR', then to come back, I should `cd $BACKPATH'.
  919. # For instance `src/foo' => `../..'.
  920. # Works with non strictly increasing paths, i.e., `src/../lib' => `..'.
  921. sub backname ($)
  922. {
  923.     my ($file) = @_;
  924.     my @res;
  925.     foreach (split (/\//, $file))
  926.     {
  927.     next if $_ eq '.' || $_ eq '';
  928.     if ($_ eq '..')
  929.     {
  930.         pop @res;
  931.     }
  932.     else
  933.     {
  934.         push (@res, '..');
  935.     }
  936.     }
  937.     return join ('/', @res) || '.';
  938. }
  939.  
  940. ################################################################
  941.  
  942.  
  943. # Handle AUTOMAKE_OPTIONS variable.  Return 1 on error, 0 otherwise.
  944. sub handle_options
  945. {
  946.   my $var = var ('AUTOMAKE_OPTIONS');
  947.   if ($var)
  948.     {
  949.       # FIXME: We should disallow conditional definitions of AUTOMAKE_OPTIONS.
  950.       if (process_option_list ($var->rdef (TRUE)->location,
  951.                    $var->value_as_list_recursive (cond_filter =>
  952.                                   TRUE)))
  953.     {
  954.       return 1;
  955.     }
  956.     }
  957.  
  958.   if ($strictness == GNITS)
  959.     {
  960.       set_option ('readme-alpha', INTERNAL);
  961.       set_option ('std-options', INTERNAL);
  962.       set_option ('check-news', INTERNAL);
  963.     }
  964.  
  965.   return 0;
  966. }
  967.  
  968. # shadow_unconditionally ($varname, $where)
  969. # -----------------------------------------
  970. # Return a $(variable) that contains all possible values
  971. # $varname can take.
  972. # If the VAR wasn't defined conditionally, return $(VAR).
  973. # Otherwise we create a am__VAR_DIST variable which contains
  974. # all possible values, and return $(am__VAR_DIST).
  975. sub shadow_unconditionally ($$)
  976. {
  977.   my ($varname, $where) = @_;
  978.   my $var = var $varname;
  979.   if ($var->has_conditional_contents)
  980.     {
  981.       $varname = "am__${varname}_DIST";
  982.       my @files = uniq ($var->value_as_list_recursive);
  983.       define_pretty_variable ($varname, TRUE, $where, @files);
  984.     }
  985.   return "\$($varname)"
  986. }
  987.  
  988. # get_object_extension ($OUT)
  989. # ---------------------------
  990. # Return object extension.  Just once, put some code into the output.
  991. # OUT is the name of the output file
  992. sub get_object_extension
  993. {
  994.     my ($out) = @_;
  995.  
  996.     # Maybe require libtool library object files.
  997.     my $extension = '.$(OBJEXT)';
  998.     $extension = '.lo' if ($out =~ /\.la$/);
  999.  
  1000.     # Check for automatic de-ANSI-fication.
  1001.     $extension = '$U' . $extension
  1002.       if option 'ansi2knr';
  1003.  
  1004.     $get_object_extension_was_run = 1;
  1005.  
  1006.     return $extension;
  1007. }
  1008.  
  1009.  
  1010. # Call finish function for each language that was used.
  1011. sub handle_languages
  1012. {
  1013.     if (! option 'no-dependencies')
  1014.     {
  1015.     # Include auto-dep code.  Don't include it if DEP_FILES would
  1016.     # be empty.
  1017.     if (&saw_sources_p (0) && keys %dep_files)
  1018.     {
  1019.         # Set location of depcomp.
  1020.         &define_variable ('depcomp', "\$(SHELL) $config_aux_dir/depcomp",
  1021.                   INTERNAL);
  1022.         &define_variable ('am__depfiles_maybe', 'depfiles', INTERNAL);
  1023.  
  1024.         require_conf_file ("$am_file.am", FOREIGN, 'depcomp');
  1025.  
  1026.         my @deplist = sort keys %dep_files;
  1027.  
  1028.         # We define this as a conditional variable because BSD
  1029.         # make can't handle backslashes for continuing comments on
  1030.         # the following line.
  1031.         define_pretty_variable ('DEP_FILES',
  1032.                     new Automake::Condition ('AMDEP_TRUE'),
  1033.                     INTERNAL, @deplist);
  1034.  
  1035.         # Generate each `include' individually.  Irix 6 make will
  1036.         # not properly include several files resulting from a
  1037.         # variable expansion; generating many separate includes
  1038.         # seems safest.
  1039.         $output_rules .= "\n";
  1040.         foreach my $iter (@deplist)
  1041.          {
  1042.         $output_rules .= (subst ('AMDEP_TRUE')
  1043.                   . subst ('am__include')
  1044.                   . ' '
  1045.                   . subst ('am__quote')
  1046.                   . $iter
  1047.                   . subst ('am__quote')
  1048.                   . "\n");
  1049.         }
  1050.  
  1051.         # Compute the set of directories to remove in distclean-depend.
  1052.         my @depdirs = uniq (map { dirname ($_) } @deplist);
  1053.         $output_rules .= &file_contents ('depend',
  1054.                          new Automake::Location,
  1055.                          DEPDIRS => "@depdirs");
  1056.     }
  1057.     }
  1058.     else
  1059.     {
  1060.     &define_variable ('depcomp', '', INTERNAL);
  1061.     &define_variable ('am__depfiles_maybe', '', INTERNAL);
  1062.     }
  1063.  
  1064.     my %done;
  1065.  
  1066.     # Is the c linker needed?
  1067.     my $needs_c = 0;
  1068.     foreach my $ext (sort keys %extension_seen)
  1069.     {
  1070.     next unless $extension_map{$ext};
  1071.  
  1072.     my $lang = $languages{$extension_map{$ext}};
  1073.  
  1074.     my $rule_file = $lang->rule_file || 'depend2';
  1075.  
  1076.     # Get information on $LANG.
  1077.     my $pfx = $lang->autodep;
  1078.     my $fpfx = ($pfx eq '') ? 'CC' : $pfx;
  1079.  
  1080.     my ($AMDEP, $FASTDEP) =
  1081.       (option 'no-dependencies' || $lang->autodep eq 'no')
  1082.       ? ('FALSE', 'FALSE') : ('AMDEP', "am__fastdep$fpfx");
  1083.  
  1084.     my %transform = ('EXT'     => $ext,
  1085.              'PFX'     => $pfx,
  1086.              'FPFX'    => $fpfx,
  1087.              'AMDEP'   => $AMDEP,
  1088.              'FASTDEP' => $FASTDEP,
  1089.              '-c'      => $lang->compile_flag || '',
  1090.              'MORE-THAN-ONE'
  1091.                        => (count_files_for_language ($lang->name) > 1));
  1092.  
  1093.     # Generate the appropriate rules for this extension.
  1094.     if (((! option 'no-dependencies') && $lang->autodep ne 'no')
  1095.         || defined $lang->compile)
  1096.     {
  1097.         # Some C compilers don't support -c -o.  Use it only if really
  1098.         # needed.
  1099.         my $output_flag = $lang->output_flag || '';
  1100.         $output_flag = '-o'
  1101.           if (! $output_flag
  1102.           && $lang->name eq 'c'
  1103.           && option 'subdir-objects');
  1104.  
  1105.         # Compute a possible derived extension.
  1106.         # This is not used by depend2.am.
  1107.         my $der_ext = (&{$lang->output_extensions} ($ext))[0];
  1108.  
  1109.         $output_rules .=
  1110.           file_contents ($rule_file,
  1111.                  new Automake::Location,
  1112.                  %transform,
  1113.                  GENERIC   => 1,
  1114.  
  1115.                  'DERIVED-EXT' => $der_ext,
  1116.  
  1117.                  # In this situation we know that the
  1118.                  # object is in this directory, so
  1119.                  # $(DEPDIR) is the correct location for
  1120.                  # dependencies.
  1121.                  DEPBASE   => '$(DEPDIR)/$*',
  1122.                  BASE      => '$*',
  1123.                  SOURCE    => '$<',
  1124.                  OBJ       => '$@',
  1125.                  OBJOBJ    => '$@',
  1126.                  LTOBJ     => '$@',
  1127.  
  1128.                  COMPILE   => '$(' . $lang->compiler . ')',
  1129.                  LTCOMPILE => '$(LT' . $lang->compiler . ')',
  1130.                  -o        => $output_flag);
  1131.     }
  1132.  
  1133.     # Now include code for each specially handled object with this
  1134.     # language.
  1135.     my %seen_files = ();
  1136.     foreach my $file (@{$lang_specific_files{$lang->name}})
  1137.     {
  1138.         my ($derived, $source, $obj, $myext) = split (' ', $file);
  1139.  
  1140.         # We might see a given object twice, for instance if it is
  1141.         # used under different conditions.
  1142.         next if defined $seen_files{$obj};
  1143.         $seen_files{$obj} = 1;
  1144.  
  1145.         prog_error ("found " . $lang->name .
  1146.             " in handle_languages, but compiler not defined")
  1147.           unless defined $lang->compile;
  1148.  
  1149.         my $obj_compile = $lang->compile;
  1150.  
  1151.         # Rewrite each occurrence of `AM_$flag' in the compile
  1152.         # rule into `${derived}_$flag' if it exists.
  1153.         for my $flag (@{$lang->flags})
  1154.           {
  1155.         my $val = "${derived}_$flag";
  1156.         $obj_compile =~ s/\(AM_$flag\)/\($val\)/
  1157.           if set_seen ($val);
  1158.           }
  1159.  
  1160.         my $obj_ltcompile = '$(LIBTOOL) --mode=compile ' . $obj_compile;
  1161.  
  1162.         # We _need_ `-o' for per object rules.
  1163.         my $output_flag = $lang->output_flag || '-o';
  1164.  
  1165.         my $depbase = dirname ($obj);
  1166.         $depbase = ''
  1167.         if $depbase eq '.';
  1168.         $depbase .= '/'
  1169.         unless $depbase eq '';
  1170.         $depbase .= '$(DEPDIR)/' . basename ($obj);
  1171.  
  1172.         # Support for deansified files in subdirectories is ugly
  1173.         # enough to deserve an explanation.
  1174.         #
  1175.         # A Note about normal ansi2knr processing first.  On
  1176.         #
  1177.         #   AUTOMAKE_OPTIONS = ansi2knr
  1178.         #   bin_PROGRAMS = foo
  1179.         #   foo_SOURCES = foo.c
  1180.         #
  1181.         # we generate rules similar to:
  1182.         #
  1183.         #   foo: foo$U.o; link ...
  1184.         #   foo$U.o: foo$U.c; compile ...
  1185.         #   foo_.c: foo.c; ansi2knr ...
  1186.         #
  1187.         # this is fairly compact, and will call ansi2knr depending
  1188.         # on the value of $U (`' or `_').
  1189.         #
  1190.         # It's harder with subdir sources. On
  1191.         #
  1192.         #   AUTOMAKE_OPTIONS = ansi2knr
  1193.         #   bin_PROGRAMS = foo
  1194.         #   foo_SOURCES = sub/foo.c
  1195.         #
  1196.         # we have to create foo_.c in the current directory.
  1197.         # (Unless the user asks 'subdir-objects'.)  This is important
  1198.         # in case the same file (`foo.c') is compiled from other
  1199.         # directories with different cpp options: foo_.c would
  1200.         # be preprocessed for only one set of options if it were
  1201.         # put in the subdirectory.
  1202.         #
  1203.         # Because foo$U.o must be built from either foo_.c or
  1204.         # sub/foo.c we can't be as concise as in the first example.
  1205.         # Instead we output
  1206.         #
  1207.         #   foo: foo$U.o; link ...
  1208.         #   foo_.o: foo_.c; compile ...
  1209.         #   foo.o: sub/foo.c; compile ...
  1210.         #   foo_.c: foo.c; ansi2knr ...
  1211.         #
  1212.         # This is why we'll now transform $rule_file twice
  1213.         # if we detect this case.
  1214.         # A first time we output the compile rule with `$U'
  1215.         # replaced by `_' and the source directory removed,
  1216.         # and another time we simply remove `$U'.
  1217.         #
  1218.         # Note that at this point $source (as computed by
  1219.         # &handle_single_transform_list) is `sub/foo$U.c'.
  1220.         # This can be confusing: it can be used as-is when
  1221.         # subdir-objects is set, otherwise you have to know
  1222.         # it really means `foo_.c' or `sub/foo.c'.
  1223.         my $objdir = dirname ($obj);
  1224.         my $srcdir = dirname ($source);
  1225.         if ($lang->ansi && $obj =~ /\$U/)
  1226.           {
  1227.         prog_error "`$obj' contains \$U, but `$source' doesn't."
  1228.           if $source !~ /\$U/;
  1229.  
  1230.         (my $source_ = $source) =~ s/\$U/_/g;
  1231.         # Explicitly clean the _.c files if they are in
  1232.         # a subdirectory. (In the current directory they get
  1233.         # erased by a `rm -f *_.c' rule.)
  1234.         $clean_files{$source_} = MOSTLY_CLEAN
  1235.           if $objdir ne '.';
  1236.         # Output an additional rule if _.c and .c are not in
  1237.         # the same directory.  (_.c is always in $objdir.)
  1238.         if ($objdir ne $srcdir)
  1239.           {
  1240.             (my $obj_ = $obj) =~ s/\$U/_/g;
  1241.             (my $depbase_ = $depbase) =~ s/\$U/_/g;
  1242.             $source_ = basename ($source_);
  1243.  
  1244.             $output_rules .=
  1245.               file_contents ($rule_file,
  1246.                      new Automake::Location,
  1247.                      %transform,
  1248.                      GENERIC   => 0,
  1249.  
  1250.                      DEPBASE   => $depbase_,
  1251.                      BASE      => $obj_,
  1252.                      SOURCE    => $source_,
  1253.                      OBJ       => "$obj_$myext",
  1254.                      OBJOBJ    => "$obj_.obj",
  1255.                      LTOBJ     => "$obj_.lo",
  1256.  
  1257.                      COMPILE   => $obj_compile,
  1258.                      LTCOMPILE => $obj_ltcompile,
  1259.                      -o        => $output_flag);
  1260.             $obj =~ s/\$U//g;
  1261.             $depbase =~ s/\$U//g;
  1262.             $source =~ s/\$U//g;
  1263.           }
  1264.           }
  1265.  
  1266.         $output_rules .=
  1267.           file_contents ($rule_file,
  1268.                  new Automake::Location,
  1269.                  %transform,
  1270.                  GENERIC   => 0,
  1271.  
  1272.                  DEPBASE   => $depbase,
  1273.                  BASE      => $obj,
  1274.                  SOURCE    => $source,
  1275.                  # Use $myext and not `.o' here, in case
  1276.                  # we are actually building a new source
  1277.                  # file -- e.g. via yacc.
  1278.                  OBJ       => "$obj$myext",
  1279.                  OBJOBJ    => "$obj.obj",
  1280.                  LTOBJ     => "$obj.lo",
  1281.  
  1282.                  COMPILE   => $obj_compile,
  1283.                  LTCOMPILE => $obj_ltcompile,
  1284.                  -o        => $output_flag);
  1285.     }
  1286.  
  1287.     # The rest of the loop is done once per language.
  1288.     next if defined $done{$lang};
  1289.     $done{$lang} = 1;
  1290.  
  1291.     # Load the language dependent Makefile chunks.
  1292.     my %lang = map { uc ($_) => 0 } keys %languages;
  1293.     $lang{uc ($lang->name)} = 1;
  1294.     $output_rules .= file_contents ('lang-compile',
  1295.                     new Automake::Location,
  1296.                     %transform, %lang);
  1297.  
  1298.     # If the source to a program consists entirely of code from a
  1299.     # `pure' language, for instance C++ for Fortran 77, then we
  1300.     # don't need the C compiler code.  However if we run into
  1301.     # something unusual then we do generate the C code.  There are
  1302.     # probably corner cases here that do not work properly.
  1303.     # People linking Java code to Fortran code deserve pain.
  1304.     $needs_c ||= ! $lang->pure;
  1305.  
  1306.     define_compiler_variable ($lang)
  1307.       if ($lang->compile);
  1308.  
  1309.     define_linker_variable ($lang)
  1310.       if ($lang->link);
  1311.  
  1312.     require_variables ("$am_file.am", $lang->Name . " source seen",
  1313.                TRUE, @{$lang->config_vars});
  1314.  
  1315.     # Call the finisher.
  1316.     $lang->finish;
  1317.  
  1318.     # Flags listed in `->flags' are user variables (per GNU Standards),
  1319.     # they should not be overridden in the Makefile...
  1320.     my @dont_override = @{$lang->flags};
  1321.     # ... and so is LDFLAGS.
  1322.     push @dont_override, 'LDFLAGS' if $lang->link;
  1323.  
  1324.     foreach my $flag (@dont_override)
  1325.       {
  1326.         my $var = var $flag;
  1327.         if ($var)
  1328.           {
  1329.         for my $cond ($var->conditions->conds)
  1330.           {
  1331.             if ($var->rdef ($cond)->owner == VAR_MAKEFILE)
  1332.               {
  1333.             msg_cond_var ('gnu', $cond, $flag,
  1334.                       "`$flag' is a user variable, "
  1335.                       . "you should not override it;\n"
  1336.                       . "use `AM_$flag' instead.");
  1337.               }
  1338.           }
  1339.           }
  1340.       }
  1341.     }
  1342.  
  1343.     # If the project is entirely C++ or entirely Fortran 77 (i.e., 1
  1344.     # suffix rule was learned), don't bother with the C stuff.  But if
  1345.     # anything else creeps in, then use it.
  1346.     $needs_c = 1
  1347.       if $need_link || suffix_rules_count > 1;
  1348.  
  1349.     if ($needs_c)
  1350.       {
  1351.     &define_compiler_variable ($languages{'c'})
  1352.       unless defined $done{$languages{'c'}};
  1353.     define_linker_variable ($languages{'c'});
  1354.       }
  1355. }
  1356.  
  1357. # Check to make sure a source defined in LIBOBJS is not explicitly
  1358. # mentioned.  This is a separate function (as opposed to being inlined
  1359. # in handle_source_transform) because it isn't always appropriate to
  1360. # do this check.
  1361. sub check_libobjs_sources
  1362. {
  1363.   my ($one_file, $unxformed) = @_;
  1364.  
  1365.   foreach my $prefix ('', 'EXTRA_', 'dist_', 'nodist_',
  1366.               'dist_EXTRA_', 'nodist_EXTRA_')
  1367.     {
  1368.       my @files;
  1369.       my $varname = $prefix . $one_file . '_SOURCES';
  1370.       my $var = var ($varname);
  1371.       if ($var)
  1372.     {
  1373.       @files = $var->value_as_list_recursive;
  1374.     }
  1375.       elsif ($prefix eq '')
  1376.     {
  1377.       @files = ($unxformed . '.c');
  1378.     }
  1379.       else
  1380.     {
  1381.       next;
  1382.     }
  1383.  
  1384.       foreach my $file (@files)
  1385.     {
  1386.       err_var ($prefix . $one_file . '_SOURCES',
  1387.            "automatically discovered file `$file' should not" .
  1388.            " be explicitly mentioned")
  1389.         if defined $libsources{$file};
  1390.     }
  1391.     }
  1392. }
  1393.  
  1394.  
  1395. # @OBJECTS
  1396. # handle_single_transform_list ($VAR, $TOPPARENT, $DERIVED, $OBJ, @FILES)
  1397. # -----------------------------------------------------------------------
  1398. # Does much of the actual work for handle_source_transform.
  1399. # Arguments are:
  1400. #   $VAR is the name of the variable that the source filenames come from
  1401. #   $TOPPARENT is the name of the _SOURCES variable which is being processed
  1402. #   $DERIVED is the name of resulting executable or library
  1403. #   $OBJ is the object extension (e.g., `$U.lo')
  1404. #   @FILES is the list of source files to transform
  1405. # Result is a list of the names of objects
  1406. # %linkers_used will be updated with any linkers needed
  1407. sub handle_single_transform_list ($$$$@)
  1408. {
  1409.     my ($var, $topparent, $derived, $obj, @files) = @_;
  1410.     my @result = ();
  1411.     my $nonansi_obj = $obj;
  1412.     $nonansi_obj =~ s/\$U//g;
  1413.  
  1414.     # Turn sources into objects.  We use a while loop like this
  1415.     # because we might add to @files in the loop.
  1416.     while (scalar @files > 0)
  1417.     {
  1418.     $_ = shift @files;
  1419.  
  1420.         # Configure substitutions in _SOURCES variables are errors.
  1421.         if (/^\@.*\@$/)
  1422.         {
  1423.       my $parent_msg = '';
  1424.       $parent_msg = "\nand is referred to from `$topparent'"
  1425.         if $topparent ne $var->name;
  1426.       err_var ($var,
  1427.            "`" . $var->name . "' includes configure substitution `$_'"
  1428.            . $parent_msg . ";\nconfigure " .
  1429.            "substitutions are not allowed in _SOURCES variables");
  1430.       next;
  1431.         }
  1432.  
  1433.         # If the source file is in a subdirectory then the `.o' is put
  1434.         # into the current directory, unless the subdir-objects option
  1435.         # is in effect.
  1436.  
  1437.         # Split file name into base and extension.
  1438.         next if ! /^(?:(.*)\/)?([^\/]*)($KNOWN_EXTENSIONS_PATTERN)$/;
  1439.         my $full = $_;
  1440.         my $directory = $1 || '';
  1441.         my $base = $2;
  1442.         my $extension = $3;
  1443.  
  1444.         # We must generate a rule for the object if it requires its own flags.
  1445.         my $renamed = 0;
  1446.         my ($linker, $object);
  1447.  
  1448.     # This records whether we've seen a derived source file (e.g.
  1449.     # yacc output).
  1450.     my $derived_source = 0;
  1451.  
  1452.     # This holds the `aggregate context' of the file we are
  1453.     # currently examining.  If the file is compiled with
  1454.     # per-object flags, then it will be the name of the object.
  1455.     # Otherwise it will be `AM'.  This is used by the target hook
  1456.     # language function.
  1457.     my $aggregate = 'AM';
  1458.  
  1459.         $extension = &derive_suffix ($extension, $nonansi_obj);
  1460.         my $lang;
  1461.         if ($extension_map{$extension} &&
  1462.             ($lang = $languages{$extension_map{$extension}}))
  1463.     {
  1464.             # Found the language, so see what it says.
  1465.             &saw_extension ($extension);
  1466.  
  1467.             # Note: computed subr call.  The language rewrite function
  1468.             # should return one of the LANG_* constants.  It could
  1469.             # also return a list whose first value is such a constant
  1470.             # and whose second value is a new source extension which
  1471.             # should be applied.  This means this particular language
  1472.             # generates another source file which we must then process
  1473.             # further.
  1474.             my $subr = \&{'lang_' . $lang->name . '_rewrite'};
  1475.             my ($r, $source_extension)
  1476.         = &$subr ($directory, $base, $extension);
  1477.             # Skip this entry if we were asked not to process it.
  1478.             next if $r == LANG_IGNORE;
  1479.  
  1480.             # Now extract linker and other info.
  1481.             $linker = $lang->linker;
  1482.  
  1483.             my $this_obj_ext;
  1484.         if (defined $source_extension)
  1485.         {
  1486.         $this_obj_ext = $source_extension;
  1487.         $derived_source = 1;
  1488.         }
  1489.         elsif ($lang->ansi)
  1490.         {
  1491.         $this_obj_ext = $obj;
  1492.         }
  1493.         else
  1494.         {
  1495.         $this_obj_ext = $nonansi_obj;
  1496.         }
  1497.         $object = $base . $this_obj_ext;
  1498.  
  1499.         # Do we have per-executable flags for this executable?
  1500.         my $have_per_exec_flags = 0;
  1501.         foreach my $flag (@{$lang->flags})
  1502.           {
  1503.         if (set_seen ("${derived}_$flag"))
  1504.           {
  1505.             $have_per_exec_flags = 1;
  1506.             last;
  1507.           }
  1508.           }
  1509.  
  1510.             if ($have_per_exec_flags)
  1511.             {
  1512.                 # We have a per-executable flag in effect for this
  1513.                 # object.  In this case we rewrite the object's
  1514.                 # name to ensure it is unique.  We also require
  1515.                 # the `compile' program to deal with compilers
  1516.                 # where `-c -o' does not work.
  1517.  
  1518.                 # We choose the name `DERIVED_OBJECT' to ensure
  1519.                 # (1) uniqueness, and (2) continuity between
  1520.                 # invocations.  However, this will result in a
  1521.                 # name that is too long for losing systems, in
  1522.                 # some situations.  So we provide _SHORTNAME to
  1523.                 # override.
  1524.  
  1525.                 my $dname = $derived;
  1526.         my $var = var ($derived . '_SHORTNAME');
  1527.                 if ($var)
  1528.                 {
  1529.                     # FIXME: should use the same Condition as
  1530.                     # the _SOURCES variable.  But this is really
  1531.                     # silly overkill -- nobody should have
  1532.                     # conditional shortnames.
  1533.                     $dname = $var->variable_value;
  1534.                 }
  1535.                 $object = $dname . '-' . $object;
  1536.  
  1537.                 require_conf_file ("$am_file.am", FOREIGN, 'compile')
  1538.                     if $lang->name eq 'c';
  1539.  
  1540.         prog_error ($lang->name . " flags defined without compiler")
  1541.           if ! defined $lang->compile;
  1542.  
  1543.                 $renamed = 1;
  1544.             }
  1545.  
  1546.             # If rewrite said it was ok, put the object into a
  1547.             # subdir.
  1548.             if ($r == LANG_SUBDIR && $directory ne '')
  1549.             {
  1550.                 $object = $directory . '/' . $object;
  1551.             }
  1552.  
  1553.             # If doing dependency tracking, then we can't print
  1554.             # the rule.  If we have a subdir object, we need to
  1555.             # generate an explicit rule.  Actually, in any case
  1556.             # where the object is not in `.' we need a special
  1557.             # rule.  The per-object rules in this case are
  1558.             # generated later, by handle_languages.
  1559.             if ($renamed || $directory ne '')
  1560.             {
  1561.                 my $obj_sans_ext = substr ($object, 0,
  1562.                        - length ($this_obj_ext));
  1563.         my $full_ansi = $full;
  1564.         if ($lang->ansi && option 'ansi2knr')
  1565.           {
  1566.             $full_ansi =~ s/$KNOWN_EXTENSIONS_PATTERN$/\$U$&/;
  1567.             $obj_sans_ext .= '$U';
  1568.           }
  1569.  
  1570.         my $val = ("$full_ansi $obj_sans_ext "
  1571.                # Only use $this_obj_ext in the derived
  1572.                # source case because in the other case we
  1573.                # *don't* want $(OBJEXT) to appear here.
  1574.                . ($derived_source ? $this_obj_ext : '.o'));
  1575.  
  1576.         # If we renamed the object then we want to use the
  1577.         # per-executable flag name.  But if this is simply a
  1578.         # subdir build then we still want to use the AM_ flag
  1579.         # name.
  1580.         if ($renamed)
  1581.         {
  1582.             $val = "$derived $val";
  1583.             $aggregate = $derived;
  1584.         }
  1585.         else
  1586.         {
  1587.             $val = "AM $val";
  1588.         }
  1589.  
  1590.         # Each item on this list is a string consisting of
  1591.         # four space-separated values: the derived flag prefix
  1592.         # (e.g. for `foo_CFLAGS', it is `foo'), the name of the
  1593.         # source file, the base name of the output file, and
  1594.         # the extension for the object file.
  1595.                 push (@{$lang_specific_files{$lang->name}}, $val);
  1596.             }
  1597.         }
  1598.         elsif ($extension eq $nonansi_obj)
  1599.         {
  1600.             # This is probably the result of a direct suffix rule.
  1601.             # In this case we just accept the rewrite.
  1602.             $object = "$base$extension";
  1603.             $linker = '';
  1604.         }
  1605.         else
  1606.         {
  1607.             # No error message here.  Used to have one, but it was
  1608.             # very unpopular.
  1609.         # FIXME: we could potentially do more processing here,
  1610.         # perhaps treating the new extension as though it were a
  1611.         # new source extension (as above).  This would require
  1612.         # more restructuring than is appropriate right now.
  1613.             next;
  1614.         }
  1615.  
  1616.     err_am "object `$object' created by `$full' and `$object_map{$object}'"
  1617.       if (defined $object_map{$object}
  1618.           && $object_map{$object} ne $full);
  1619.  
  1620.     my $comp_val = (($object =~ /\.lo$/)
  1621.             ? COMPILE_LIBTOOL : COMPILE_ORDINARY);
  1622.     (my $comp_obj = $object) =~ s/\.lo$/.\$(OBJEXT)/;
  1623.     if (defined $object_compilation_map{$comp_obj}
  1624.         && $object_compilation_map{$comp_obj} != 0
  1625.         # Only see the error once.
  1626.         && ($object_compilation_map{$comp_obj}
  1627.         != (COMPILE_LIBTOOL | COMPILE_ORDINARY))
  1628.         && $object_compilation_map{$comp_obj} != $comp_val)
  1629.       {
  1630.         err_am "object `$comp_obj' created both with libtool and without";
  1631.       }
  1632.     $object_compilation_map{$comp_obj} |= $comp_val;
  1633.  
  1634.     if (defined $lang)
  1635.     {
  1636.         # Let the language do some special magic if required.
  1637.         $lang->target_hook ($aggregate, $object, $full);
  1638.     }
  1639.  
  1640.     if ($derived_source)
  1641.       {
  1642.         prog_error ($lang->name . " has automatic dependency tracking")
  1643.           if $lang->autodep ne 'no';
  1644.         # Make sure this new source file is handled next.  That will
  1645.         # make it appear to be at the right place in the list.
  1646.         unshift (@files, $object);
  1647.         # Distribute derived sources unless the source they are
  1648.         # derived from is not.
  1649.         &push_dist_common ($object)
  1650.           unless ($topparent =~ /^(?:nobase_)?nodist_/);
  1651.         next;
  1652.       }
  1653.  
  1654.         $linkers_used{$linker} = 1;
  1655.  
  1656.         push (@result, $object);
  1657.  
  1658.         if (! defined $object_map{$object})
  1659.         {
  1660.             my @dep_list = ();
  1661.             $object_map{$object} = $full;
  1662.  
  1663.             # If resulting object is in subdir, we need to make
  1664.             # sure the subdir exists at build time.
  1665.             if ($object =~ /\//)
  1666.             {
  1667.                 # FIXME: check that $DIRECTORY is somewhere in the
  1668.                 # project
  1669.  
  1670.         # For Java, the way we're handling it right now, a
  1671.         # `..' component doesn't make sense.
  1672.                 if ($lang->name eq 'java' && $object =~ /(\/|^)\.\.\//)
  1673.           {
  1674.             err_am "`$full' should not contain a `..' component";
  1675.           }
  1676.  
  1677.         # Make sure object is removed by `make mostlyclean'.
  1678.         $compile_clean_files{$object} = MOSTLY_CLEAN;
  1679.         # If we have a libtool object then we also must remove
  1680.         # the ordinary .o.
  1681.         if ($object =~ /\.lo$/)
  1682.         {
  1683.             (my $xobj = $object) =~ s,lo$,\$(OBJEXT),;
  1684.             $compile_clean_files{$xobj} = MOSTLY_CLEAN;
  1685.  
  1686.             # Remove any libtool object in this directory.
  1687.             $libtool_clean_directories{$directory} = 1;
  1688.         }
  1689.  
  1690.                 push (@dep_list, require_build_directory ($directory));
  1691.  
  1692.                 # If we're generating dependencies, we also want
  1693.                 # to make sure that the appropriate subdir of the
  1694.                 # .deps directory is created.
  1695.         push (@dep_list,
  1696.               require_build_directory ($directory . '/$(DEPDIR)'))
  1697.           unless option 'no-dependencies';
  1698.             }
  1699.  
  1700.             &pretty_print_rule ($object . ':', "\t", @dep_list)
  1701.                 if scalar @dep_list > 0;
  1702.         }
  1703.  
  1704.         # Transform .o or $o file into .P file (for automatic
  1705.         # dependency code).
  1706.         if ($lang && $lang->autodep ne 'no')
  1707.         {
  1708.             my $depfile = $object;
  1709.             $depfile =~ s/\.([^.]*)$/.P$1/;
  1710.             $depfile =~ s/\$\(OBJEXT\)$/o/;
  1711.             $dep_files{dirname ($depfile) . '/$(DEPDIR)/'
  1712.                . basename ($depfile)} = 1;
  1713.         }
  1714.     }
  1715.  
  1716.     return @result;
  1717. }
  1718.  
  1719.  
  1720. # $LINKER
  1721. # define_objects_from_sources ($VAR, $OBJVAR, $NODEFINE, $ONE_FILE,
  1722. #                              $OBJ, $PARENT, $TOPPARENT, $WHERE)
  1723. # ---------------------------------------------------------------------
  1724. # Define an _OBJECTS variable for a _SOURCES variable (or subvariable)
  1725. #
  1726. # Arguments are:
  1727. #   $VAR is the name of the _SOURCES variable
  1728. #   $OBJVAR is the name of the _OBJECTS variable if known (otherwise
  1729. #     it will be generated and returned).
  1730. #   $NODEFINE is a boolean: if true, $OBJVAR will not be defined (but
  1731. #     work done to determine the linker will be).
  1732. #   $ONE_FILE is the canonical (transformed) name of object to build
  1733. #   $OBJ is the object extension (i.e. either `.o' or `.lo').
  1734. #   $TOPPARENT is the _SOURCES variable being processed.
  1735. #   $WHERE context into which this definition is done
  1736. #
  1737. # Result is a pair ($LINKER, $OBJVAR):
  1738. #    $LINKER is a boolean, true if a linker is needed to deal with the objects
  1739. sub define_objects_from_sources ($$$$$$$)
  1740. {
  1741.   my ($var, $objvar, $nodefine, $one_file, $obj, $topparent, $where) = @_;
  1742.  
  1743.   my $needlinker = "";
  1744.  
  1745.   transform_variable_recursively
  1746.     ($var, $objvar, 'am__objects', $nodefine, $where,
  1747.      # The transform code to run on each filename.
  1748.      sub {
  1749.        my ($subvar, $val, $cond, $full_cond) = @_;
  1750.        my @trans = &handle_single_transform_list ($subvar, $topparent,
  1751.                           $one_file, $obj, $val);
  1752.        $needlinker = "true" if @trans;
  1753.        return @trans;
  1754.      });
  1755.  
  1756.   return $needlinker;
  1757. }
  1758.  
  1759.  
  1760. # Handle SOURCE->OBJECT transform for one program or library.
  1761. # Arguments are:
  1762. #   canonical (transformed) name of object to build
  1763. #   actual name of object to build
  1764. #   object extension (i.e. either `.o' or `$o'.
  1765. # Return result is name of linker variable that must be used.
  1766. # Empty return means just use `LINK'.
  1767. sub handle_source_transform
  1768. {
  1769.     # one_file is canonical name.  unxformed is given name.  obj is
  1770.     # object extension.
  1771.     my ($one_file, $unxformed, $obj, $where) = @_;
  1772.  
  1773.     my ($linker) = '';
  1774.  
  1775.     # No point in continuing if _OBJECTS is defined.
  1776.     return if reject_var ($one_file . '_OBJECTS',
  1777.               $one_file . '_OBJECTS should not be defined');
  1778.  
  1779.     my %used_pfx = ();
  1780.     my $needlinker;
  1781.     %linkers_used = ();
  1782.     foreach my $prefix ('', 'EXTRA_', 'dist_', 'nodist_',
  1783.             'dist_EXTRA_', 'nodist_EXTRA_')
  1784.     {
  1785.     my $varname = $prefix . $one_file . "_SOURCES";
  1786.     my $var = var $varname;
  1787.     next unless $var;
  1788.  
  1789.     # We are going to define _OBJECTS variables using the prefix.
  1790.     # Then we glom them all together.  So we can't use the null
  1791.     # prefix here as we need it later.
  1792.     my $xpfx = ($prefix eq '') ? 'am_' : $prefix;
  1793.  
  1794.     # Keep track of which prefixes we saw.
  1795.     $used_pfx{$xpfx} = 1
  1796.       unless $prefix =~ /EXTRA_/;
  1797.  
  1798.     push @sources, "\$($varname)";
  1799.     push @dist_sources, shadow_unconditionally ($varname, $where)
  1800.       unless ($prefix =~ /^nodist_/);
  1801.  
  1802.     $needlinker |=
  1803.         define_objects_from_sources ($varname,
  1804.                      $xpfx . $one_file . '_OBJECTS',
  1805.                      $prefix =~ /EXTRA_/,
  1806.                      $one_file, $obj, $varname, $where);
  1807.     }
  1808.     if ($needlinker)
  1809.     {
  1810.     $linker ||= &resolve_linker (%linkers_used);
  1811.     }
  1812.  
  1813.     my @keys = sort keys %used_pfx;
  1814.     if (scalar @keys == 0)
  1815.     {
  1816.     # The default source for libfoo.la is libfoo.c, but for
  1817.     # backward compatibility we first look at libfoo_la.c
  1818.     my $old_default_source = "$one_file.c";
  1819.     (my $default_source = $unxformed) =~ s,(\.[^./\\]*)?$,.c,;
  1820.     if ($old_default_source ne $default_source
  1821.         && (rule $old_default_source
  1822.         || rule '$(srcdir)/' . $old_default_source
  1823.         || rule '${srcdir}/' . $old_default_source
  1824.         || -f $old_default_source))
  1825.       {
  1826.         my $loc = $where->clone;
  1827.         $loc->pop_context;
  1828.         msg ('obsolete', $loc,
  1829.          "the default source for `$unxformed' has been changed "
  1830.          . "to `$default_source'.\n(Using `$old_default_source' for "
  1831.          . "backward compatibility.)");
  1832.         $default_source = $old_default_source;
  1833.       }
  1834.     # If a rule exists to build this source with a $(srcdir)
  1835.     # prefix, use that prefix in our variables too.  This is for
  1836.     # the sake of BSD Make.
  1837.     if (rule '$(srcdir)/' . $default_source
  1838.         || rule '${srcdir}/' . $default_source)
  1839.       {
  1840.         $default_source = '$(srcdir)/' . $default_source;
  1841.       }
  1842.  
  1843.     &define_variable ($one_file . "_SOURCES", $default_source, $where);
  1844.     push (@sources, $default_source);
  1845.     push (@dist_sources, $default_source);
  1846.  
  1847.     %linkers_used = ();
  1848.     my (@result) =
  1849.       &handle_single_transform_list ($one_file . '_SOURCES',
  1850.                      $one_file . '_SOURCES',
  1851.                      $one_file, $obj,
  1852.                      $default_source);
  1853.     $linker ||= &resolve_linker (%linkers_used);
  1854.     define_pretty_variable ($one_file . '_OBJECTS', TRUE, $where, @result);
  1855.     }
  1856.     else
  1857.     {
  1858.     @keys = map { '$(' . $_ . $one_file . '_OBJECTS)' } @keys;
  1859.     define_pretty_variable ($one_file . '_OBJECTS', TRUE, $where, @keys);
  1860.     }
  1861.  
  1862.     # If we want to use `LINK' we must make sure it is defined.
  1863.     if ($linker eq '')
  1864.     {
  1865.     $need_link = 1;
  1866.     }
  1867.  
  1868.     return $linker;
  1869. }
  1870.  
  1871.  
  1872. # handle_lib_objects ($XNAME, $VAR)
  1873. # ---------------------------------
  1874. # Special-case ALLOCA and LIBOBJS substitutions in _LDADD or _LIBADD variables.
  1875. # Also, generate _DEPENDENCIES variable if appropriate.
  1876. # Arguments are:
  1877. #   transformed name of object being built, or empty string if no object
  1878. #   name of _LDADD/_LIBADD-type variable to examine
  1879. # Returns 1 if LIBOBJS seen, 0 otherwise.
  1880. sub handle_lib_objects
  1881. {
  1882.   my ($xname, $varname) = @_;
  1883.  
  1884.   my $var = var ($varname);
  1885.   prog_error "handle_lib_objects: `$varname' undefined"
  1886.     unless $var;
  1887.   prog_error "handle_lib_objects: unexpected variable name `$varname'"
  1888.     unless $varname =~ /^(.*)(?:LIB|LD)ADD$/;
  1889.   my $prefix = $1 || 'AM_';
  1890.  
  1891.   my $seen_libobjs = 0;
  1892.   my $flagvar = 0;
  1893.  
  1894.   transform_variable_recursively
  1895.     ($varname, $xname . '_DEPENDENCIES', 'am__DEPENDENCIES',
  1896.      ! $xname, INTERNAL,
  1897.      # Transformation function, run on each filename.
  1898.      sub {
  1899.        my ($subvar, $val, $cond, $full_cond) = @_;
  1900.  
  1901.        if ($val =~ /^-/)
  1902.      {
  1903.        # Skip -lfoo and -Ldir silently; these are explicitly allowed.
  1904.        if ($val !~ /^-[lL]/ &&
  1905.            # Skip -dlopen and -dlpreopen; these are explicitly allowed
  1906.            # for Libtool libraries or programs.  (Actually we are a bit
  1907.            # laxest here since this code also applies to non-libtool
  1908.            # libraries or programs, for which -dlopen and -dlopreopen
  1909.            # are pure non-sence.  Diagnosting this doesn't seems very
  1910.            # important: the developer will quickly get complaints from
  1911.            # the linker.)
  1912.            $val !~ /^-dl(?:pre)?open$/ &&
  1913.            # Only get this error once.
  1914.            ! $flagvar)
  1915.          {
  1916.            $flagvar = 1;
  1917.            # FIXME: should display a stack of nested variables
  1918.            # as context when $var != $subvar.
  1919.            err_var ($var, "linker flags such as `$val' belong in "
  1920.             . "`${prefix}LDFLAGS");
  1921.          }
  1922.        return ();
  1923.      }
  1924.        elsif ($val !~ /^\@.*\@$/)
  1925.      {
  1926.        # Assume we have a file of some sort, and output it into the
  1927.        # dependency variable.  Autoconf substitutions are not output;
  1928.        # rarely is a new dependency substituted into e.g. foo_LDADD
  1929.        # -- but bad things (e.g. -lX11) are routinely substituted.
  1930.        # Note that LIBOBJS and ALLOCA are exceptions to this rule,
  1931.        # and handled specially below.
  1932.        return $val;
  1933.      }
  1934.        elsif ($val =~ /^\@(LT)?LIBOBJS\@$/)
  1935.      {
  1936.        handle_LIBOBJS ($subvar, $cond, $1);
  1937.        $seen_libobjs = 1;
  1938.        return $val;
  1939.      }
  1940.        elsif ($val =~ /^\@(LT)?ALLOCA\@$/)
  1941.      {
  1942.        handle_ALLOCA ($subvar, $cond, $1);
  1943.        return $val;
  1944.      }
  1945.        else
  1946.      {
  1947.        return ();
  1948.      }
  1949.      });
  1950.  
  1951.   return $seen_libobjs;
  1952. }
  1953.  
  1954. sub handle_LIBOBJS ($$$)
  1955. {
  1956.   my ($var, $cond, $lt) = @_;
  1957.   $lt ||= '';
  1958.   my $myobjext = ($1 ? 'l' : '') . 'o';
  1959.  
  1960.   $var->requires_variables ("\@${lt}LIBOBJS\@ used", $lt . 'LIBOBJS')
  1961.     if ! keys %libsources;
  1962.  
  1963.   foreach my $iter (keys %libsources)
  1964.     {
  1965.       if ($iter =~ /\.[cly]$/)
  1966.     {
  1967.       &saw_extension ($&);
  1968.       &saw_extension ('.c');
  1969.     }
  1970.  
  1971.       if ($iter =~ /\.h$/)
  1972.     {
  1973.       require_file_with_macro ($cond, $var, FOREIGN, $iter);
  1974.     }
  1975.       elsif ($iter ne 'alloca.c')
  1976.     {
  1977.       my $rewrite = $iter;
  1978.       $rewrite =~ s/\.c$/.P$myobjext/;
  1979.       $dep_files{'$(DEPDIR)/' . $rewrite} = 1;
  1980.       $rewrite = "^" . quotemeta ($iter) . "\$";
  1981.       # Only require the file if it is not a built source.
  1982.       my $bs = var ('BUILT_SOURCES');
  1983.       if (! $bs || ! grep (/$rewrite/, $bs->value_as_list_recursive))
  1984.         {
  1985.           require_file_with_macro ($cond, $var, FOREIGN, $iter);
  1986.         }
  1987.     }
  1988.     }
  1989. }
  1990.  
  1991. sub handle_ALLOCA ($$$)
  1992. {
  1993.   my ($var, $cond, $lt) = @_;
  1994.   my $myobjext = ($lt ? 'l' : '') . 'o';
  1995.   $lt ||= '';
  1996.   $var->requires_variables ("\@${lt}ALLOCA\@ used", $lt . 'ALLOCA');
  1997.   $dep_files{'$(DEPDIR)/alloca.P' . $myobjext} = 1;
  1998.   require_file_with_macro ($cond, $var, FOREIGN, 'alloca.c');
  1999.   &saw_extension ('c');
  2000. }
  2001.  
  2002. # Canonicalize the input parameter
  2003. sub canonicalize
  2004. {
  2005.     my ($string) = @_;
  2006.     $string =~ tr/A-Za-z0-9_\@/_/c;
  2007.     return $string;
  2008. }
  2009.  
  2010. # Canonicalize a name, and check to make sure the non-canonical name
  2011. # is never used.  Returns canonical name.  Arguments are name and a
  2012. # list of suffixes to check for.
  2013. sub check_canonical_spelling
  2014. {
  2015.   my ($name, @suffixes) = @_;
  2016.  
  2017.   my $xname = &canonicalize ($name);
  2018.   if ($xname ne $name)
  2019.     {
  2020.       foreach my $xt (@suffixes)
  2021.     {
  2022.       reject_var ("$name$xt", "use `$xname$xt', not `$name$xt'");
  2023.     }
  2024.     }
  2025.  
  2026.   return $xname;
  2027. }
  2028.  
  2029.  
  2030. # handle_compile ()
  2031. # -----------------
  2032. # Set up the compile suite.
  2033. sub handle_compile ()
  2034. {
  2035.     return
  2036.       unless $get_object_extension_was_run;
  2037.  
  2038.     # Boilerplate.
  2039.     my $default_includes = '';
  2040.     if (! option 'nostdinc')
  2041.       {
  2042.     $default_includes = ' -I. -I$(srcdir)';
  2043.  
  2044.     my $var = var 'CONFIG_HEADER';
  2045.     if ($var)
  2046.       {
  2047.         foreach my $hdr (split (' ', $var->variable_value))
  2048.           {
  2049.         $default_includes .= ' -I' . dirname ($hdr);
  2050.           }
  2051.       }
  2052.       }
  2053.  
  2054.     my (@mostly_rms, @dist_rms);
  2055.     foreach my $item (sort keys %compile_clean_files)
  2056.     {
  2057.     if ($compile_clean_files{$item} == MOSTLY_CLEAN)
  2058.     {
  2059.         push (@mostly_rms, "\t-rm -f $item");
  2060.     }
  2061.     elsif ($compile_clean_files{$item} == DIST_CLEAN)
  2062.     {
  2063.         push (@dist_rms, "\t-rm -f $item");
  2064.     }
  2065.     else
  2066.     {
  2067.       prog_error 'invalid entry in %compile_clean_files';
  2068.     }
  2069.     }
  2070.  
  2071.     my ($coms, $vars, $rules) =
  2072.       &file_contents_internal (1, "$libdir/am/compile.am",
  2073.                    new Automake::Location,
  2074.                    ('DEFAULT_INCLUDES' => $default_includes,
  2075.                 'MOSTLYRMS' => join ("\n", @mostly_rms),
  2076.                 'DISTRMS' => join ("\n", @dist_rms)));
  2077.     $output_vars .= $vars;
  2078.     $output_rules .= "$coms$rules";
  2079.  
  2080.     # Check for automatic de-ANSI-fication.
  2081.     if (option 'ansi2knr')
  2082.       {
  2083.     my ($ansi2knr_filename, $ansi2knr_where) = @{option 'ansi2knr'};
  2084.     my $ansi2knr_dir = '';
  2085.  
  2086.     require_variables ($ansi2knr_where, "option `ansi2knr' is used",
  2087.                TRUE, "ANSI2KNR", "U");
  2088.  
  2089.     # topdir is where ansi2knr should be.
  2090.     if ($ansi2knr_filename eq 'ansi2knr')
  2091.       {
  2092.         # Only require ansi2knr files if they should appear in
  2093.         # this directory.
  2094.         require_file ($ansi2knr_where, FOREIGN,
  2095.               'ansi2knr.c', 'ansi2knr.1');
  2096.  
  2097.         # ansi2knr needs to be built before subdirs, so unshift it.
  2098.         unshift (@all, '$(ANSI2KNR)');
  2099.       }
  2100.     else
  2101.       {
  2102.         $ansi2knr_dir = dirname ($ansi2knr_filename);
  2103.       }
  2104.  
  2105.     $output_rules .= &file_contents ('ansi2knr',
  2106.                      new Automake::Location,
  2107.                      'ANSI2KNR-DIR' => $ansi2knr_dir);
  2108.  
  2109.     }
  2110. }
  2111.  
  2112. # handle_libtool ()
  2113. # -----------------
  2114. # Handle libtool rules.
  2115. sub handle_libtool
  2116. {
  2117.   return unless var ('LIBTOOL');
  2118.  
  2119.   # Libtool requires some files, but only at top level.
  2120.   require_conf_file_with_macro (TRUE, 'LIBTOOL', FOREIGN, @libtool_files)
  2121.     if $relative_dir eq '.';
  2122.  
  2123.   my @libtool_rms;
  2124.   foreach my $item (sort keys %libtool_clean_directories)
  2125.     {
  2126.       my $dir = ($item eq '.') ? '' : "$item/";
  2127.       # .libs is for Unix, _libs for DOS.
  2128.       push (@libtool_rms, "\t-rm -rf ${dir}.libs ${dir}_libs");
  2129.     }
  2130.  
  2131.   # Output the libtool compilation rules.
  2132.   $output_rules .= &file_contents ('libtool',
  2133.                    new Automake::Location,
  2134.                    LTRMS => join ("\n", @libtool_rms));
  2135. }
  2136.  
  2137. # handle_programs ()
  2138. # ------------------
  2139. # Handle C programs.
  2140. sub handle_programs
  2141. {
  2142.   my @proglist = &am_install_var ('progs', 'PROGRAMS',
  2143.                   'bin', 'sbin', 'libexec', 'pkglib',
  2144.                   'noinst', 'check');
  2145.   return if ! @proglist;
  2146.  
  2147.   my $seen_global_libobjs =
  2148.     var ('LDADD') && &handle_lib_objects ('', 'LDADD');
  2149.  
  2150.   foreach my $pair (@proglist)
  2151.     {
  2152.       my ($where, $one_file) = @$pair;
  2153.  
  2154.       my $seen_libobjs = 0;
  2155.       my $obj = &get_object_extension ($one_file);
  2156.  
  2157.       # Strip any $(EXEEXT) suffix the user might have added, or this
  2158.       # will confuse &handle_source_transform and &check_canonical_spelling.
  2159.       # We'll add $(EXEEXT) back later anyway.
  2160.       $one_file =~ s/\$\(EXEEXT\)$//;
  2161.  
  2162.       # Canonicalize names and check for misspellings.
  2163.       my $xname = &check_canonical_spelling ($one_file, '_LDADD', '_LDFLAGS',
  2164.                          '_SOURCES', '_OBJECTS',
  2165.                          '_DEPENDENCIES');
  2166.  
  2167.       $where->push_context ("while processing program `$one_file'");
  2168.       $where->set (INTERNAL->get);
  2169.  
  2170.       my $linker = &handle_source_transform ($xname, $one_file, $obj, $where);
  2171.  
  2172.       if (var ($xname . "_LDADD"))
  2173.     {
  2174.       $seen_libobjs = &handle_lib_objects ($xname, $xname . '_LDADD');
  2175.     }
  2176.       else
  2177.     {
  2178.       # User didn't define prog_LDADD override.  So do it.
  2179.       &define_variable ($xname . '_LDADD', '$(LDADD)', $where);
  2180.  
  2181.       # This does a bit too much work.  But we need it to
  2182.       # generate _DEPENDENCIES when appropriate.
  2183.       if (var ('LDADD'))
  2184.         {
  2185.           $seen_libobjs = &handle_lib_objects ($xname, 'LDADD');
  2186.         }
  2187.     }
  2188.  
  2189.       reject_var ($xname . '_LIBADD',
  2190.           "use `${xname}_LDADD', not `${xname}_LIBADD'");
  2191.  
  2192.       set_seen ($xname . '_DEPENDENCIES');
  2193.       set_seen ($xname . '_LDFLAGS');
  2194.  
  2195.       # Determine program to use for link.
  2196.       my $xlink;
  2197.       if (var ($xname . '_LINK'))
  2198.     {
  2199.       $xlink = $xname . '_LINK';
  2200.     }
  2201.       else
  2202.     {
  2203.       $xlink = $linker ? $linker : 'LINK';
  2204.     }
  2205.  
  2206.       # If the resulting program lies into a subdirectory,
  2207.       # make sure this directory will exist.
  2208.       my $dirstamp = require_build_directory_maybe ($one_file);
  2209.  
  2210.       $output_rules .= &file_contents ('program',
  2211.                        $where,
  2212.                        PROGRAM  => $one_file,
  2213.                        XPROGRAM => $xname,
  2214.                        XLINK    => $xlink,
  2215.                        DIRSTAMP => $dirstamp,
  2216.                        EXEEXT   => '$(EXEEXT)');
  2217.  
  2218.       if ($seen_libobjs || $seen_global_libobjs)
  2219.     {
  2220.       if (var ($xname . '_LDADD'))
  2221.         {
  2222.           &check_libobjs_sources ($xname, $xname . '_LDADD');
  2223.         }
  2224.       elsif (var ('LDADD'))
  2225.         {
  2226.           &check_libobjs_sources ($xname, 'LDADD');
  2227.         }
  2228.     }
  2229.     }
  2230. }
  2231.  
  2232.  
  2233. # handle_libraries ()
  2234. # -------------------
  2235. # Handle libraries.
  2236. sub handle_libraries
  2237. {
  2238.   my @liblist = &am_install_var ('libs', 'LIBRARIES',
  2239.                  'lib', 'pkglib', 'noinst', 'check');
  2240.   return if ! @liblist;
  2241.  
  2242.   my @prefix = am_primary_prefixes ('LIBRARIES', 0, 'lib', 'pkglib',
  2243.                     'noinst', 'check');
  2244.  
  2245.   if (@prefix)
  2246.     {
  2247.       my $var = rvar ($prefix[0] . '_LIBRARIES');
  2248.       $var->requires_variables ('library used', 'RANLIB');
  2249.     }
  2250.  
  2251.   &define_variable ('AR', 'ar', INTERNAL);
  2252.   &define_variable ('ARFLAGS', 'cru', INTERNAL);
  2253.  
  2254.   foreach my $pair (@liblist)
  2255.     {
  2256.       my ($where, $onelib) = @$pair;
  2257.  
  2258.       my $seen_libobjs = 0;
  2259.       # Check that the library fits the standard naming convention.
  2260.       if (basename ($onelib) !~ /^lib.*\.a/)
  2261.     {
  2262.       error $where, "`$onelib' is not a standard library name";
  2263.     }
  2264.  
  2265.       $where->push_context ("while processing library `$onelib'");
  2266.       $where->set (INTERNAL->get);
  2267.  
  2268.       my $obj = &get_object_extension ($onelib);
  2269.  
  2270.       # Canonicalize names and check for misspellings.
  2271.       my $xlib = &check_canonical_spelling ($onelib, '_LIBADD', '_SOURCES',
  2272.                         '_OBJECTS', '_DEPENDENCIES',
  2273.                         '_AR');
  2274.  
  2275.       if (! var ($xlib . '_AR'))
  2276.     {
  2277.       &define_variable ($xlib . '_AR', '$(AR) $(ARFLAGS)', $where);
  2278.     }
  2279.  
  2280.       # Generate support for conditional object inclusion in
  2281.       # libraries.
  2282.       if (var ($xlib . '_LIBADD'))
  2283.     {
  2284.       if (&handle_lib_objects ($xlib, $xlib . '_LIBADD'))
  2285.         {
  2286.           $seen_libobjs = 1;
  2287.         }
  2288.     }
  2289.       else
  2290.     {
  2291.       &define_variable ($xlib . "_LIBADD", '', $where);
  2292.     }
  2293.  
  2294.       reject_var ($xlib . '_LDADD',
  2295.           "use `${xlib}_LIBADD', not `${xlib}_LDADD'");
  2296.  
  2297.       # Make sure we at look at this.
  2298.       set_seen ($xlib . '_DEPENDENCIES');
  2299.  
  2300.       &handle_source_transform ($xlib, $onelib, $obj, $where);
  2301.  
  2302.       # If the resulting library lies into a subdirectory,
  2303.       # make sure this directory will exist.
  2304.       my $dirstamp = require_build_directory_maybe ($onelib);
  2305.  
  2306.       $output_rules .= &file_contents ('library',
  2307.                        $where,
  2308.                        LIBRARY  => $onelib,
  2309.                        XLIBRARY => $xlib,
  2310.                        DIRSTAMP => $dirstamp);
  2311.  
  2312.       if ($seen_libobjs)
  2313.     {
  2314.       if (var ($xlib . '_LIBADD'))
  2315.         {
  2316.           &check_libobjs_sources ($xlib, $xlib . '_LIBADD');
  2317.         }
  2318.     }
  2319.     }
  2320. }
  2321.  
  2322.  
  2323. # handle_ltlibraries ()
  2324. # ---------------------
  2325. # Handle shared libraries.
  2326. sub handle_ltlibraries
  2327. {
  2328.   my @liblist = &am_install_var ('ltlib', 'LTLIBRARIES',
  2329.                  'noinst', 'lib', 'pkglib', 'check');
  2330.   return if ! @liblist;
  2331.  
  2332.   my %instdirs;
  2333.   my @prefix = am_primary_prefixes ('LTLIBRARIES', 0, 'lib', 'pkglib',
  2334.                     'noinst', 'check');
  2335.  
  2336.   if (@prefix)
  2337.     {
  2338.       my $var = rvar ($prefix[0] . '_LTLIBRARIES');
  2339.       $var->requires_variables ('Libtool library used', 'LIBTOOL');
  2340.     }
  2341.  
  2342.   my %liblocations = ();    # Location (in Makefile.am) of each library.
  2343.  
  2344.   foreach my $key (@prefix)
  2345.     {
  2346.       # Get the installation directory of each library.
  2347.       (my $dir = $key) =~ s/^nobase_//;
  2348.       my $var = rvar ($key . '_LTLIBRARIES');
  2349.       for my $pair ($var->value_as_list_recursive (location => 1))
  2350.     {
  2351.       my ($where, $lib) = @$pair;
  2352.       # We reject libraries which are installed in several places,
  2353.       # because we don't handle this in the rules (think `-rpath').
  2354.       #
  2355.       # However, we allow the same library to be listed many times
  2356.       # for the same directory.  This is for users who need setups
  2357.       # like
  2358.       #   if COND1
  2359.       #     lib_LTLIBRARIES = libfoo.la
  2360.       #   endif
  2361.       #   if COND2
  2362.       #     lib_LTLIBRARIES = libfoo.la
  2363.       #   endif
  2364.       #
  2365.       # Actually this will also allow
  2366.       #   lib_LTLIBRARIES = libfoo.la libfoo.la
  2367.       # Diagnosing this case doesn't seem worth the plain (we'd
  2368.       # have to fill $instdirs on a per-condition basis, check
  2369.       # implied conditions, etc.)
  2370.       if (defined $instdirs{$lib} && $instdirs{$lib} ne $dir)
  2371.         {
  2372.           error ($where, "`$lib' is already going to be installed in "
  2373.              . "`$instdirs{$lib}'", partial => 1);
  2374.           error ($liblocations{$lib}, "`$lib' previously declared here");
  2375.         }
  2376.       else
  2377.         {
  2378.           $instdirs{$lib} = $dir;
  2379.           $liblocations{$lib} = $where->clone;
  2380.         }
  2381.     }
  2382.     }
  2383.  
  2384.   foreach my $pair (@liblist)
  2385.     {
  2386.       my ($where, $onelib) = @$pair;
  2387.  
  2388.       my $seen_libobjs = 0;
  2389.       my $obj = &get_object_extension ($onelib);
  2390.  
  2391.       # Canonicalize names and check for misspellings.
  2392.       my $xlib = &check_canonical_spelling ($onelib, '_LIBADD', '_LDFLAGS',
  2393.                         '_SOURCES', '_OBJECTS',
  2394.                         '_DEPENDENCIES');
  2395.  
  2396.       # Check that the library fits the standard naming convention.
  2397.       my $libname_rx = "^lib.*\.la";
  2398.       my $ldvar = var ("${xlib}_LDFLAGS") || var ('AM_LDFLAGS');
  2399.       my $ldvar2 = var ('LDFLAGS');
  2400.       if (($ldvar && grep (/-module/, $ldvar->value_as_list_recursive))
  2401.       || ($ldvar2 && grep (/-module/, $ldvar2->value_as_list_recursive)))
  2402.     {
  2403.       # Relax name checking for libtool modules.
  2404.       $libname_rx = "\.la";
  2405.     }
  2406.       if (basename ($onelib) !~ /$libname_rx$/)
  2407.     {
  2408.       msg ('error-gnu/warn', $where,
  2409.            "`$onelib' is not a standard libtool library name");
  2410.     }
  2411.  
  2412.       $where->push_context ("while processing Libtool library `$onelib'");
  2413.       $where->set (INTERNAL->get);
  2414.  
  2415.       # Make sure we at look at these.
  2416.       set_seen ($xlib . '_LDFLAGS');
  2417.       set_seen ($xlib . '_DEPENDENCIES');
  2418.  
  2419.       # Generate support for conditional object inclusion in
  2420.       # libraries.
  2421.       if (var ($xlib . '_LIBADD'))
  2422.     {
  2423.       if (&handle_lib_objects ($xlib, $xlib . '_LIBADD'))
  2424.         {
  2425.           $seen_libobjs = 1;
  2426.         }
  2427.     }
  2428.       else
  2429.     {
  2430.       &define_variable ($xlib . "_LIBADD", '', $where);
  2431.     }
  2432.  
  2433.       reject_var ("${xlib}_LDADD",
  2434.           "use `${xlib}_LIBADD', not `${xlib}_LDADD'");
  2435.  
  2436.  
  2437.       my $linker = &handle_source_transform ($xlib, $onelib, $obj, $where);
  2438.  
  2439.       # Determine program to use for link.
  2440.       my $xlink;
  2441.       if (var ($xlib . '_LINK'))
  2442.     {
  2443.       $xlink = $xlib . '_LINK';
  2444.     }
  2445.       else
  2446.     {
  2447.       $xlink = $linker ? $linker : 'LINK';
  2448.     }
  2449.  
  2450.       my $rpath;
  2451.       if ($instdirs{$onelib} eq 'EXTRA'
  2452.       || $instdirs{$onelib} eq 'noinst'
  2453.       || $instdirs{$onelib} eq 'check')
  2454.     {
  2455.       # It's an EXTRA_ library, so we can't specify -rpath,
  2456.       # because we don't know where the library will end up.
  2457.       # The user probably knows, but generally speaking automake
  2458.       # doesn't -- and in fact configure could decide
  2459.       # dynamically between two different locations.
  2460.       $rpath = '';
  2461.     }
  2462.       else
  2463.     {
  2464.       $rpath = ('-rpath $(' . $instdirs{$onelib} . 'dir)');
  2465.     }
  2466.  
  2467.       # If the resulting library lies into a subdirectory,
  2468.       # make sure this directory will exist.
  2469.       my $dirstamp = require_build_directory_maybe ($onelib);
  2470.  
  2471.       # Remember to cleanup .libs/ in this directory.
  2472.       my $dirname = dirname $onelib;
  2473.       $libtool_clean_directories{$dirname} = 1;
  2474.  
  2475.       $output_rules .= &file_contents ('ltlibrary',
  2476.                        $where,
  2477.                        LTLIBRARY  => $onelib,
  2478.                        XLTLIBRARY => $xlib,
  2479.                        RPATH      => $rpath,
  2480.                        XLINK      => $xlink,
  2481.                        DIRSTAMP   => $dirstamp);
  2482.       if ($seen_libobjs)
  2483.     {
  2484.       if (var ($xlib . '_LIBADD'))
  2485.         {
  2486.           &check_libobjs_sources ($xlib, $xlib . '_LIBADD');
  2487.         }
  2488.     }
  2489.     }
  2490. }
  2491.  
  2492. # See if any _SOURCES variable were misspelled.
  2493. sub check_typos ()
  2494. {
  2495.   # It is ok if the user sets this particular variable.
  2496.   set_seen 'AM_LDFLAGS';
  2497.  
  2498.   foreach my $var (variables)
  2499.     {
  2500.       my $varname = $var->name;
  2501.       # A configure variable is always legitimate.
  2502.       next if exists $configure_vars{$varname};
  2503.  
  2504.       my $check = 0;
  2505.       foreach my $primary ('_SOURCES', '_LIBADD', '_LDADD', '_LDFLAGS',
  2506.                '_DEPENDENCIES')
  2507.     {
  2508.       if ($varname =~ /$primary$/)
  2509.         {
  2510.           $check = 1;
  2511.           last;
  2512.         }
  2513.     }
  2514.       next unless $check;
  2515.  
  2516.       for my $cond ($var->conditions->conds)
  2517.     {
  2518.       msg_var 'syntax', $var, "unused variable: `$varname'"
  2519.         unless $var->rdef ($cond)->seen;
  2520.     }
  2521.     }
  2522. }
  2523.  
  2524.  
  2525. # Handle scripts.
  2526. sub handle_scripts
  2527. {
  2528.     # NOTE we no longer automatically clean SCRIPTS, because it is
  2529.     # useful to sometimes distribute scripts verbatim.  This happens
  2530.     # e.g. in Automake itself.
  2531.     &am_install_var ('-candist', 'scripts', 'SCRIPTS',
  2532.              'bin', 'sbin', 'libexec', 'pkgdata',
  2533.              'noinst', 'check');
  2534. }
  2535.  
  2536.  
  2537.  
  2538.  
  2539. ## ------------------------ ##
  2540. ## Handling Texinfo files.  ##
  2541. ## ------------------------ ##
  2542.  
  2543. # ($OUTFILE, $VFILE, @CLEAN_FILES)
  2544. # &scan_texinfo_file ($FILENAME)
  2545. # ------------------------------
  2546. # $OUTFILE     - name of the info file produced by $FILENAME.
  2547. # $VFILE       - name of the version.texi file used (undef if none).
  2548. # @CLEAN_FILES - list of byproducts (indexes etc.)
  2549. sub scan_texinfo_file ($)
  2550. {
  2551.   my ($filename) = @_;
  2552.  
  2553.   # Some of the following extensions are always created, no matter
  2554.   # whether indexes are used or not.  Other (like cps, fns, ... pgs)
  2555.   # are only created when they are used.  We used to scan $FILENAME
  2556.   # for their use, but that is not enough: they could be used in
  2557.   # included files.  We can't scan included files because we don't
  2558.   # know the include path.  Therefore we always erase these files, no
  2559.   # matter whether they are used or not.
  2560.   #
  2561.   # (tmp is only created if an @macro is used and a certain e-TeX
  2562.   # feature is not available.)
  2563.   my %clean_suffixes =
  2564.     map { $_ => 1 } (qw(aux log toc tmp
  2565.             cp cps
  2566.             fn fns
  2567.             ky kys
  2568.             vr vrs
  2569.             tp tps
  2570.             pg pgs)); # grep 'new.*index' texinfo.tex
  2571.  
  2572.   my $texi = new Automake::XFile "< $filename";
  2573.   verb "reading $filename";
  2574.  
  2575.   my ($outfile, $vfile);
  2576.   while ($_ = $texi->getline)
  2577.     {
  2578.       if (/^\@setfilename +(\S+)/)
  2579.     {
  2580.       # Honor only the first @setfilename.  (It's possible to have
  2581.       # more occurrences later if the manual shows examples of how
  2582.       # to use @setfilename...)
  2583.       next if $outfile;
  2584.  
  2585.       $outfile = $1;
  2586.       if ($outfile =~ /\.(.+)$/ && $1 ne 'info')
  2587.         {
  2588.           error ("$filename:$.",
  2589.              "output `$outfile' has unrecognized extension");
  2590.           return;
  2591.         }
  2592.     }
  2593.       # A "version.texi" file is actually any file whose name matches
  2594.       # "vers*.texi".
  2595.       elsif (/^\@include\s+(vers[^.]*\.texi)\s*$/)
  2596.     {
  2597.       $vfile = $1;
  2598.     }
  2599.  
  2600.       # Try to find new or unused indexes.
  2601.  
  2602.       # Creating a new category of index.
  2603.       elsif (/^\@def(code)?index (\w+)/)
  2604.     {
  2605.       $clean_suffixes{$2} = 1;
  2606.       $clean_suffixes{"$2s"} = 1;
  2607.     }
  2608.  
  2609.       # Merging an index into an another.
  2610.       elsif (/^\@syn(code)?index (\w+) (\w+)/)
  2611.     {
  2612.       delete $clean_suffixes{"$2s"};
  2613.       $clean_suffixes{"$3s"} = 1;
  2614.     }
  2615.  
  2616.     }
  2617.  
  2618.   if (! $outfile)
  2619.     {
  2620.       err_am "`$filename' missing \@setfilename";
  2621.       return;
  2622.     }
  2623.  
  2624.   my $infobase = basename ($filename);
  2625.   $infobase =~ s/\.te?xi(nfo)?$//;
  2626.   return ($outfile, $vfile,
  2627.       map { "$infobase.$_" } (sort keys %clean_suffixes));
  2628. }
  2629.  
  2630.  
  2631. # ($DIRSTAMP, @CLEAN_FILES)
  2632. # output_texinfo_build_rules ($SOURCE, $DEST, $INSRC, @DEPENDENCIES)
  2633. # ------------------------------------------------------------------
  2634. # SOURCE - the source Texinfo file
  2635. # DEST - the destination Info file
  2636. # INSRC - wether DEST should be built in the source tree
  2637. # DEPENDENCIES - known dependencies
  2638. sub output_texinfo_build_rules ($$$@)
  2639. {
  2640.   my ($source, $dest, $insrc, @deps) = @_;
  2641.  
  2642.   # Split `a.texi' into `a' and `.texi'.
  2643.   my ($spfx, $ssfx) = ($source =~ /^(.*?)(\.[^.]*)?$/);
  2644.   my ($dpfx, $dsfx) = ($dest =~ /^(.*?)(\.[^.]*)?$/);
  2645.  
  2646.   $ssfx ||= "";
  2647.   $dsfx ||= "";
  2648.  
  2649.   # We can output two kinds of rules: the "generic" rules use Make
  2650.   # suffix rules and are appropriate when $source and $dest do not lie
  2651.   # in a sub-directory; the "specific" rules are needed in the other
  2652.   # case.
  2653.   #
  2654.   # The former are output only once (this is not really apparent here,
  2655.   # but just remember that some logic deeper in Automake will not
  2656.   # output the same rule twice); while the later need to be output for
  2657.   # each Texinfo source.
  2658.   my $generic;
  2659.   my $makeinfoflags;
  2660.   my $sdir = dirname $source;
  2661.   if ($sdir eq '.' && dirname ($dest) eq '.')
  2662.     {
  2663.       $generic = 1;
  2664.       $makeinfoflags = '-I $(srcdir)';
  2665.     }
  2666.   else
  2667.     {
  2668.       $generic = 0;
  2669.       $makeinfoflags = "-I $sdir -I \$(srcdir)/$sdir";
  2670.     }
  2671.  
  2672.   # A directory can contain two kinds of info files: some built in the
  2673.   # source tree, and some built in the build tree.  The rules are
  2674.   # different in each case.  However we cannot output two different
  2675.   # set of generic rules.  Because in-source builds are more usual, we
  2676.   # use generic rules in this case and fall back to "specific" rules
  2677.   # for build-dir builds.  (It should not be a problem to invert this
  2678.   # if needed.)
  2679.   $generic = 0 unless $insrc;
  2680.  
  2681.   # We cannot use a suffix rule to build info files with an empty
  2682.   # extension.  Otherwise we would output a single suffix inference
  2683.   # rule, with separate dependencies, as in
  2684.   #
  2685.   #    .texi:
  2686.   #             $(MAKEINFO) ...
  2687.   #    foo.info: foo.texi
  2688.   #
  2689.   # which confuse Solaris make.  (See the Autoconf manual for
  2690.   # details.)  Therefore we use a specific rule in this case.  This
  2691.   # applies to info files only (dvi and pdf files always have an
  2692.   # extension).
  2693.   my $generic_info = ($generic && $dsfx) ? 1 : 0;
  2694.  
  2695.   # If the resulting file lie into a subdirectory,
  2696.   # make sure this directory will exist.
  2697.   my $dirstamp = require_build_directory_maybe ($dest);
  2698.  
  2699.   my $dipfx = ($insrc ? '$(srcdir)/' : '') . $dpfx;
  2700.  
  2701.   $output_rules .= file_contents ('texibuild',
  2702.                   new Automake::Location,
  2703.                   DEPS             => "@deps",
  2704.                   DEST_PREFIX      => $dpfx,
  2705.                   DEST_INFO_PREFIX => $dipfx,
  2706.                   DEST_SUFFIX      => $dsfx,
  2707.                   DIRSTAMP         => $dirstamp,
  2708.                   GENERIC          => $generic,
  2709.                   GENERIC_INFO     => $generic_info,
  2710.                   INSRC           => $insrc,
  2711.                   MAKEINFOFLAGS    => $makeinfoflags,
  2712.                   SOURCE           => ($generic
  2713.                                ? '$<' : $source),
  2714.                   SOURCE_INFO      => ($generic_info
  2715.                                ? '$<' : $source),
  2716.                   SOURCE_REAL      => $source,
  2717.                   SOURCE_SUFFIX    => $ssfx,
  2718.                   );
  2719.   return ($dirstamp, "$dpfx.dvi", "$dpfx.pdf", "$dpfx.ps", "$dpfx.html");
  2720. }
  2721.  
  2722.  
  2723. # $TEXICLEANS
  2724. # handle_texinfo_helper ($info_texinfos)
  2725. # --------------------------------------
  2726. # Handle all Texinfo source; helper for handle_texinfo.
  2727. sub handle_texinfo_helper ($)
  2728. {
  2729.   my ($info_texinfos) = @_;
  2730.   my (@infobase, @info_deps_list, @texi_deps);
  2731.   my %versions;
  2732.   my $done = 0;
  2733.   my @texi_cleans;
  2734.  
  2735.   # Build a regex matching user-cleaned files.
  2736.   my $d = var 'DISTCLEANFILES';
  2737.   my $c = var 'CLEANFILES';
  2738.   my @f = ();
  2739.   push @f, $d->value_as_list_recursive (inner_expand => 1) if $d;
  2740.   push @f, $c->value_as_list_recursive (inner_expand => 1) if $c;
  2741.   @f = map { s|[^A-Za-z_0-9*\[\]\-]|\\$&|g; s|\*|[^/]*|g; $_; } @f;
  2742.   my $user_cleaned_files = '^(?:' . join ('|', @f) . ')$';
  2743.  
  2744.   foreach my $texi
  2745.       ($info_texinfos->value_as_list_recursive (inner_expand => 1))
  2746.     {
  2747.       my $infobase = $texi;
  2748.       $infobase =~ s/\.(txi|texinfo|texi)$//;
  2749.  
  2750.       if ($infobase eq $texi)
  2751.     {
  2752.       # FIXME: report line number.
  2753.       err_am "texinfo file `$texi' has unrecognized extension";
  2754.       next;
  2755.     }
  2756.  
  2757.       push @infobase, $infobase;
  2758.  
  2759.       # If 'version.texi' is referenced by input file, then include
  2760.       # automatic versioning capability.
  2761.       my ($out_file, $vtexi, @clean_files) =
  2762.     scan_texinfo_file ("$relative_dir/$texi")
  2763.     or next;
  2764.       push (@texi_cleans, @clean_files);
  2765.  
  2766.       # If the Texinfo source is in a subdirectory, create the
  2767.       # resulting info in this subdirectory.  If it is in the current
  2768.       # directory, try hard to not prefix "./" because it breaks the
  2769.       # generic rules.
  2770.       my $outdir = dirname ($texi) . '/';
  2771.       $outdir = "" if $outdir eq './';
  2772.       $out_file =  $outdir . $out_file;
  2773.  
  2774.       # Until Automake 1.6.3, .info files were built in the
  2775.       # source tree.  This was an obstacle to the support of
  2776.       # non-distributed .info files, and non-distributed .texi
  2777.       # files.
  2778.       #
  2779.       # * Non-distributed .texi files is important in some packages
  2780.       #   where .texi files are built at make time, probably using
  2781.       #   other binaries built in the package itself, maybe using
  2782.       #   tools or information found on the build host.  Because
  2783.       #   these files are not distributed they are always rebuilt
  2784.       #   at make time; they should therefore not lie in the source
  2785.       #   directory.  One plan was to support this using
  2786.       #   nodist_info_TEXINFOS or something similar.  (Doing this
  2787.       #   requires some sanity checks.  For instance Automake should
  2788.       #   not allow:
  2789.       #      dist_info_TEXINFO = foo.texi
  2790.       #      nodist_foo_TEXINFO = included.texi
  2791.       #   because a distributed file should never depend on a
  2792.       #   non-distributed file.)
  2793.       #
  2794.       # * If .texi files are not distributed, then .info files should
  2795.       #   not be distributed either.  There are also cases where one
  2796.       #   want to distribute .texi files, but do not want to
  2797.       #   distribute the .info files.  For instance the Texinfo package
  2798.       #   distributes the tool used to build these files; it would
  2799.       #   be a waste of space to distribute them.  It's not clear
  2800.       #   which syntax we should use to indicate that .info files should
  2801.       #   not be distributed.  Akim Demaille suggested that eventually
  2802.       #   we switch to a new syntax:
  2803.       #   |  Maybe we should take some inspiration from what's already
  2804.       #   |  done in the rest of Automake.  Maybe there is too much
  2805.       #   |  syntactic sugar here, and you want
  2806.       #   |     nodist_INFO = bar.info
  2807.       #   |     dist_bar_info_SOURCES = bar.texi
  2808.       #   |     bar_texi_DEPENDENCIES = foo.texi
  2809.       #   |  with a bit of magic to have bar.info represent the whole
  2810.       #   |  bar*info set.  That's a lot more verbose that the current
  2811.       #   |  situation, but it is # not new, hence the user has less
  2812.       #   |  to learn.
  2813.       #      |
  2814.       #   |  But there is still too much room for meaningless specs:
  2815.       #   |     nodist_INFO = bar.info
  2816.       #   |     dist_bar_info_SOURCES = bar.texi
  2817.       #   |     dist_PS = bar.ps something-written-by-hand.ps
  2818.       #   |     nodist_bar_ps_SOURCES = bar.texi
  2819.       #   |     bar_texi_DEPENDENCIES = foo.texi
  2820.       #   |  here bar.texi is dist_ in line 2, and nodist_ in 4.
  2821.       #
  2822.       # Back to the point, it should be clear that in order to support
  2823.       # non-distributed .info files, we need to build them in the
  2824.       # build tree, not in the source tree (non-distributed .texi
  2825.       # files are less of a problem, because we do not output build
  2826.       # rules for them).  In Automake 1.7 .info build rules have been
  2827.       # largely cleaned up so that .info files get always build in the
  2828.       # build tree, even when distributed.  The idea was that
  2829.       #   (1) if during a VPATH build the .info file was found to be
  2830.       #       absent or out-of-date (in the source tree or in the
  2831.       #       build tree), Make would rebuild it in the build tree.
  2832.       #       If an up-to-date source-tree of the .info file existed,
  2833.       #       make would not rebuild it in the build tree.
  2834.       #   (2) having two copies of .info files, one in the source tree
  2835.       #       and one (newer) in the build tree is not a problem
  2836.       #       because `make dist' always pick files in the build tree
  2837.       #       first.
  2838.       # However it turned out the be a bad idea for several reasons:
  2839.       #   * Tru64, OpenBSD, and FreeBSD (not NetBSD) Make do not behave
  2840.       #     like GNU Make on point (1) above.  These implementations
  2841.       #     of Make would always rebuild .info files in the build
  2842.       #     tree, even if such files were up to date in the source
  2843.       #     tree.  Consequently, it was impossible to perform a VPATH
  2844.       #     build of a package containing Texinfo files using these
  2845.       #     Make implementations.
  2846.       #     (Refer to the Autoconf Manual, section "Limitation of
  2847.       #     Make", paragraph "VPATH", item "target lookup", for
  2848.       #     an account of the differences between these
  2849.       #     implementations.)
  2850.       #   * The GNU Coding Standards require these files to be built
  2851.       #     in the source-tree (when they are distributed, that is).
  2852.       #   * Keeping a fresher copy of distributed files in the
  2853.       #     build tree can be annoying during development because
  2854.       #     - if the files is kept under CVS, you really want it
  2855.       #       to be updated in the source tree
  2856.       #     - it is confusing that `make distclean' does not erase
  2857.       #       all files in the build tree.
  2858.       #
  2859.       # Consequently, starting with Automake 1.8, .info files are
  2860.       # built in the source tree again.  Because we still plan to
  2861.       # support non-distributed .info files at some point, we
  2862.       # have a single variable ($INSRC) that controls whether
  2863.       # the current .info file must be built in the source tree
  2864.       # or in the build tree.  Actually this variable is switched
  2865.       # off for .info files that appear to be cleaned; this is
  2866.       # for backward compatibility with package such as Texinfo,
  2867.       # which do things like
  2868.       #   info_TEXINFOS = texinfo.txi info-stnd.texi info.texi
  2869.       #   DISTCLEANFILES = texinfo texinfo-* info*.info*
  2870.       #   # Do not create info files for distribution.
  2871.       #   dist-info:
  2872.       # in order not to distribute .info files.
  2873.       my $insrc = ($out_file =~ $user_cleaned_files) ? 0 : 1;
  2874.  
  2875.       my $soutdir = '$(srcdir)/' . $outdir;
  2876.       $outdir = $soutdir if $insrc;
  2877.  
  2878.       # If user specified file_TEXINFOS, then use that as explicit
  2879.       # dependency list.
  2880.       @texi_deps = ();
  2881.       push (@texi_deps, "$soutdir$vtexi") if $vtexi;
  2882.  
  2883.       my $canonical = canonicalize ($infobase);
  2884.       if (var ($canonical . "_TEXINFOS"))
  2885.     {
  2886.       push (@texi_deps, '$(' . $canonical . '_TEXINFOS)');
  2887.       push_dist_common ('$(' . $canonical . '_TEXINFOS)');
  2888.     }
  2889.  
  2890.       my ($dirstamp, @cfiles) =
  2891.     output_texinfo_build_rules ($texi, $out_file, $insrc, @texi_deps);
  2892.       push (@texi_cleans, @cfiles);
  2893.  
  2894.       push (@info_deps_list, $out_file);
  2895.  
  2896.       # If a vers*.texi file is needed, emit the rule.
  2897.       if ($vtexi)
  2898.     {
  2899.       err_am ("`$vtexi', included in `$texi', "
  2900.           . "also included in `$versions{$vtexi}'")
  2901.         if defined $versions{$vtexi};
  2902.       $versions{$vtexi} = $texi;
  2903.  
  2904.       # We number the stamp-vti files.  This is doable since the
  2905.       # actual names don't matter much.  We only number starting
  2906.       # with the second one, so that the common case looks nice.
  2907.       my $vti = ($done ? $done : 'vti');
  2908.       ++$done;
  2909.  
  2910.       # This is ugly, but it is our historical practice.
  2911.       if ($config_aux_dir_set_in_configure_in)
  2912.         {
  2913.           require_conf_file_with_macro (TRUE, 'info_TEXINFOS', FOREIGN,
  2914.                         'mdate-sh');
  2915.         }
  2916.       else
  2917.         {
  2918.           require_file_with_macro (TRUE, 'info_TEXINFOS',
  2919.                        FOREIGN, 'mdate-sh');
  2920.         }
  2921.  
  2922.       my $conf_dir;
  2923.       if ($config_aux_dir_set_in_configure_in)
  2924.         {
  2925.           $conf_dir = $config_aux_dir;
  2926.           $conf_dir .= '/' unless $conf_dir =~ /\/$/;
  2927.         }
  2928.       else
  2929.         {
  2930.           $conf_dir = '$(srcdir)/';
  2931.         }
  2932.       $output_rules .= file_contents ('texi-vers',
  2933.                       new Automake::Location,
  2934.                       TEXI     => $texi,
  2935.                       VTI      => $vti,
  2936.                       STAMPVTI => "${soutdir}stamp-$vti",
  2937.                       VTEXI    => "$soutdir$vtexi",
  2938.                       MDDIR    => $conf_dir,
  2939.                       DIRSTAMP => $dirstamp);
  2940.     }
  2941.     }
  2942.  
  2943.   # Handle location of texinfo.tex.
  2944.   my $need_texi_file = 0;
  2945.   my $texinfodir;
  2946.   if (var ('TEXINFO_TEX'))
  2947.     {
  2948.       # The user defined TEXINFO_TEX so assume he knows what he is
  2949.       # doing.
  2950.       $texinfodir = ('$(srcdir)/'
  2951.              . dirname (variable_value ('TEXINFO_TEX')));
  2952.     }
  2953.   elsif (option 'cygnus')
  2954.     {
  2955.       $texinfodir = '$(top_srcdir)/../texinfo';
  2956.       define_variable ('TEXINFO_TEX', "$texinfodir/texinfo.tex", INTERNAL);
  2957.     }
  2958.   elsif ($config_aux_dir_set_in_configure_in)
  2959.     {
  2960.       $texinfodir = $config_aux_dir;
  2961.       define_variable ('TEXINFO_TEX', "$texinfodir/texinfo.tex", INTERNAL);
  2962.       $need_texi_file = 2; # so that we require_conf_file later
  2963.     }
  2964.   else
  2965.     {
  2966.       $texinfodir = '$(srcdir)';
  2967.       $need_texi_file = 1;
  2968.     }
  2969.   define_variable ('am__TEXINFO_TEX_DIR', $texinfodir, INTERNAL);
  2970.  
  2971.   push (@dist_targets, 'dist-info');
  2972.  
  2973.   if (! option 'no-installinfo')
  2974.     {
  2975.       # Make sure documentation is made and installed first.  Use
  2976.       # $(INFO_DEPS), not 'info', because otherwise recursive makes
  2977.       # get run twice during "make all".
  2978.       unshift (@all, '$(INFO_DEPS)');
  2979.     }
  2980.  
  2981.   define_files_variable ("DVIS", @infobase, 'dvi', INTERNAL);
  2982.   define_files_variable ("PDFS", @infobase, 'pdf', INTERNAL);
  2983.   define_files_variable ("PSS", @infobase, 'ps', INTERNAL);
  2984.   define_files_variable ("HTMLS", @infobase, 'html', INTERNAL);
  2985.  
  2986.   # This next isn't strictly needed now -- the places that look here
  2987.   # could easily be changed to look in info_TEXINFOS.  But this is
  2988.   # probably better, in case noinst_TEXINFOS is ever supported.
  2989.   define_variable ("TEXINFOS", variable_value ('info_TEXINFOS'), INTERNAL);
  2990.  
  2991.   # Do some error checking.  Note that this file is not required
  2992.   # when in Cygnus mode; instead we defined TEXINFO_TEX explicitly
  2993.   # up above.
  2994.   if ($need_texi_file && ! option 'no-texinfo.tex')
  2995.     {
  2996.       if ($need_texi_file > 1)
  2997.     {
  2998.       require_conf_file_with_macro (TRUE, 'info_TEXINFOS', FOREIGN,
  2999.                     'texinfo.tex');
  3000.     }
  3001.       else
  3002.     {
  3003.       require_file_with_macro (TRUE, 'info_TEXINFOS', FOREIGN,
  3004.                    'texinfo.tex');
  3005.     }
  3006.     }
  3007.  
  3008.   return makefile_wrap ("", "\t  ", @texi_cleans);
  3009. }
  3010.  
  3011.  
  3012. # handle_texinfo ()
  3013. # -----------------
  3014. # Handle all Texinfo source.
  3015. sub handle_texinfo ()
  3016. {
  3017.   reject_var 'TEXINFOS', "`TEXINFOS' is an anachronism; use `info_TEXINFOS'";
  3018.   # FIXME: I think this is an obsolete future feature name.
  3019.   reject_var 'html_TEXINFOS', "HTML generation not yet supported";
  3020.  
  3021.   my $info_texinfos = var ('info_TEXINFOS');
  3022.   my $texiclean = "";
  3023.   if ($info_texinfos)
  3024.     {
  3025.       $texiclean = handle_texinfo_helper ($info_texinfos);
  3026.     }
  3027.   $output_rules .=  file_contents ('texinfos',
  3028.                    new Automake::Location,
  3029.                    TEXICLEAN     => $texiclean,
  3030.                    'LOCAL-TEXIS' => !!$info_texinfos);
  3031. }
  3032.  
  3033.  
  3034. # Handle any man pages.
  3035. sub handle_man_pages
  3036. {
  3037.   reject_var 'MANS', "`MANS' is an anachronism; use `man_MANS'";
  3038.  
  3039.   # Find all the sections in use.  We do this by first looking for
  3040.   # "standard" sections, and then looking for any additional
  3041.   # sections used in man_MANS.
  3042.   my (%sections, %vlist);
  3043.   # We handle nodist_ for uniformity.  man pages aren't distributed
  3044.   # by default so it isn't actually very important.
  3045.   foreach my $pfx ('', 'dist_', 'nodist_')
  3046.     {
  3047.       # Add more sections as needed.
  3048.       foreach my $section ('0'..'9', 'n', 'l')
  3049.     {
  3050.       my $varname = $pfx . 'man' . $section . '_MANS';
  3051.       if (var ($varname))
  3052.         {
  3053.           $sections{$section} = 1;
  3054.           $varname = '$(' . $varname . ')';
  3055.           $vlist{$varname} = 1;
  3056.  
  3057.           &push_dist_common ($varname)
  3058.         if $pfx eq 'dist_';
  3059.         }
  3060.     }
  3061.  
  3062.       my $varname = $pfx . 'man_MANS';
  3063.       my $var = var ($varname);
  3064.       if ($var)
  3065.     {
  3066.       foreach ($var->value_as_list_recursive)
  3067.         {
  3068.           # A page like `foo.1c' goes into man1dir.
  3069.           if (/\.([0-9a-z])([a-z]*)$/)
  3070.         {
  3071.           $sections{$1} = 1;
  3072.         }
  3073.         }
  3074.  
  3075.       $varname = '$(' . $varname . ')';
  3076.       $vlist{$varname} = 1;
  3077.       &push_dist_common ($varname)
  3078.         if $pfx eq 'dist_';
  3079.     }
  3080.     }
  3081.  
  3082.   return unless %sections;
  3083.  
  3084.   # Now for each section, generate an install and uninstall rule.
  3085.   # Sort sections so output is deterministic.
  3086.   foreach my $section (sort keys %sections)
  3087.     {
  3088.       $output_rules .= &file_contents ('mans',
  3089.                        new Automake::Location,
  3090.                        SECTION => $section);
  3091.     }
  3092.  
  3093.   my @mans = sort keys %vlist;
  3094.   $output_vars .= file_contents ('mans-vars',
  3095.                  new Automake::Location,
  3096.                  MANS => "@mans");
  3097.  
  3098.   push (@all, '$(MANS)')
  3099.     unless option 'no-installman';
  3100. }
  3101.  
  3102. # Handle DATA variables.
  3103. sub handle_data
  3104. {
  3105.     &am_install_var ('-noextra', '-candist', 'data', 'DATA',
  3106.              'data', 'sysconf', 'sharedstate', 'localstate',
  3107.              'pkgdata', 'lisp', 'noinst', 'check');
  3108. }
  3109.  
  3110. # Handle TAGS.
  3111. sub handle_tags
  3112. {
  3113.     my @tag_deps = ();
  3114.     my @ctag_deps = ();
  3115.     if (var ('SUBDIRS'))
  3116.     {
  3117.     $output_rules .= ("tags-recursive:\n"
  3118.               . "\tlist=\'\$(SUBDIRS)\'; for subdir in \$\$list; do \\\n"
  3119.               # Never fail here if a subdir fails; it
  3120.               # isn't important.
  3121.               . "\t  test \"\$\$subdir\" = . || (cd \$\$subdir"
  3122.               . " && \$(MAKE) \$(AM_MAKEFLAGS) tags); \\\n"
  3123.               . "\tdone\n");
  3124.     push (@tag_deps, 'tags-recursive');
  3125.     &depend ('.PHONY', 'tags-recursive');
  3126.  
  3127.     $output_rules .= ("ctags-recursive:\n"
  3128.               . "\tlist=\'\$(SUBDIRS)\'; for subdir in \$\$list; do \\\n"
  3129.               # Never fail here if a subdir fails; it
  3130.               # isn't important.
  3131.               . "\t  test \"\$\$subdir\" = . || (cd \$\$subdir"
  3132.               . " && \$(MAKE) \$(AM_MAKEFLAGS) ctags); \\\n"
  3133.               . "\tdone\n");
  3134.     push (@ctag_deps, 'ctags-recursive');
  3135.     &depend ('.PHONY', 'ctags-recursive');
  3136.     }
  3137.  
  3138.     if (&saw_sources_p (1)
  3139.     || var ('ETAGS_ARGS')
  3140.     || @tag_deps)
  3141.     {
  3142.     my @config;
  3143.     foreach my $spec (@config_headers)
  3144.     {
  3145.         my ($out, @ins) = split_config_file_spec ($spec);
  3146.         foreach my $in (@ins)
  3147.           {
  3148.         # If the config header source is in this directory,
  3149.         # require it.
  3150.         push @config, basename ($in)
  3151.           if $relative_dir eq dirname ($in);
  3152.           }
  3153.     }
  3154.     $output_rules .= &file_contents ('tags',
  3155.                      new Automake::Location,
  3156.                      CONFIG    => "@config",
  3157.                      TAGSDIRS  => "@tag_deps",
  3158.                      CTAGSDIRS => "@ctag_deps");
  3159.  
  3160.     set_seen 'TAGS_DEPENDENCIES';
  3161.     }
  3162.     elsif (reject_var ('TAGS_DEPENDENCIES',
  3163.                "doesn't make sense to define `TAGS_DEPENDENCIES'"
  3164.                . "without\nsources or `ETAGS_ARGS'"))
  3165.     {
  3166.     }
  3167.     else
  3168.     {
  3169.     # Every Makefile must define some sort of TAGS rule.
  3170.     # Otherwise, it would be possible for a top-level "make TAGS"
  3171.     # to fail because some subdirectory failed.
  3172.     $output_rules .= "tags: TAGS\nTAGS:\n\n";
  3173.     # Ditto ctags.
  3174.     $output_rules .= "ctags: CTAGS\nCTAGS:\n\n";
  3175.     }
  3176. }
  3177.  
  3178. # Handle multilib support.
  3179. sub handle_multilib
  3180. {
  3181.   if ($seen_multilib && $relative_dir eq '.')
  3182.     {
  3183.       $output_rules .= &file_contents ('multilib', new Automake::Location);
  3184.       push (@all, 'all-multi');
  3185.     }
  3186. }
  3187.  
  3188.  
  3189. # $BOOLEAN
  3190. # &for_dist_common ($A, $B)
  3191. # -------------------------
  3192. # Subroutine for &handle_dist: sort files to dist.
  3193. #
  3194. # We put README first because it then becomes easier to make a
  3195. # Usenet-compliant shar file (in these, README must be first).
  3196. #
  3197. # FIXME: do more ordering of files here.
  3198. sub for_dist_common
  3199. {
  3200.     return 0
  3201.         if $a eq $b;
  3202.     return -1
  3203.         if $a eq 'README';
  3204.     return 1
  3205.         if $b eq 'README';
  3206.     return $a cmp $b;
  3207. }
  3208.  
  3209.  
  3210. # handle_dist
  3211. # -----------
  3212. # Handle 'dist' target.
  3213. sub handle_dist ()
  3214. {
  3215.   # Substutions for distdit.am
  3216.   my %transform;
  3217.  
  3218.   # Define DIST_SUBDIRS.  This must always be done, regardless of the
  3219.   # no-dist setting: target like `distclean' or `maintainer-clean' use it.
  3220.   my $subdirs = var ('SUBDIRS');
  3221.   if ($subdirs)
  3222.     {
  3223.       # If SUBDIRS is conditionally defined, then set DIST_SUBDIRS
  3224.       # to all possible directories, and use it.  If DIST_SUBDIRS is
  3225.       # defined, just use it.
  3226.       my $dist_subdir_name;
  3227.       # Note that we check DIST_SUBDIRS first on purpose, so that
  3228.       # we don't call has_conditional_contents for now reason.
  3229.       # (In the past one project used so many conditional subdirectories
  3230.       # that calling has_conditional_contents on SUBDIRS caused
  3231.       # automake to grow to 150Mb -- this should not happen with
  3232.       # the current implementation of has_conditional_contents,
  3233.       # but it's more efficient to avoid the call anyway.)
  3234.       if (var ('DIST_SUBDIRS'))
  3235.     {
  3236.       $dist_subdir_name = 'DIST_SUBDIRS';
  3237.     }
  3238.       elsif ($subdirs->has_conditional_contents)
  3239.     {
  3240.       $dist_subdir_name = 'DIST_SUBDIRS';
  3241.       define_pretty_variable
  3242.         ('DIST_SUBDIRS', TRUE, INTERNAL,
  3243.          uniq ($subdirs->value_as_list_recursive));
  3244.     }
  3245.       else
  3246.     {
  3247.       $dist_subdir_name = 'SUBDIRS';
  3248.       # We always define this because that is what `distclean'
  3249.       # wants.
  3250.       define_pretty_variable ('DIST_SUBDIRS', TRUE, INTERNAL,
  3251.                   '$(SUBDIRS)');
  3252.     }
  3253.  
  3254.       $transform{'DIST_SUBDIR_NAME'} = $dist_subdir_name;
  3255.     }
  3256.  
  3257.   # The remaining definitions are only required when a dist target is used.
  3258.   return if option 'no-dist';
  3259.  
  3260.   # At least one of the archive formats must be enabled.
  3261.   if ($relative_dir eq '.')
  3262.     {
  3263.       my $archive_defined = option 'no-dist-gzip' ? 0 : 1;
  3264.       $archive_defined ||=
  3265.     grep { option "dist-$_" } ('shar', 'zip', 'tarZ', 'bzip2');
  3266.       error (option 'no-dist-gzip',
  3267.          "no-dist-gzip specified but no dist-* specified, "
  3268.          . "at least one archive format must be enabled")
  3269.     unless $archive_defined;
  3270.     }
  3271.  
  3272.   # Look for common files that should be included in distribution.
  3273.   # If the aux dir is set, and it does not have a Makefile.am, then
  3274.   # we check for these files there as well.
  3275.   my $check_aux = 0;
  3276.   my $auxdir = '';
  3277.   if ($relative_dir eq '.'
  3278.       && $config_aux_dir_set_in_configure_in)
  3279.     {
  3280.       ($auxdir = $config_aux_dir) =~ s,^\$\(top_srcdir\)/,,;
  3281.       if (! &is_make_dir ($auxdir))
  3282.     {
  3283.       $check_aux = 1;
  3284.     }
  3285.     }
  3286.   foreach my $cfile (@common_files)
  3287.     {
  3288.       if (-f ($relative_dir . "/" . $cfile)
  3289.       # The file might be absent, but if it can be built it's ok.
  3290.       || rule $cfile)
  3291.     {
  3292.       &push_dist_common ($cfile);
  3293.     }
  3294.  
  3295.       # Don't use `elsif' here because a file might meaningfully
  3296.       # appear in both directories.
  3297.       if ($check_aux && -f ($auxdir . '/' . $cfile))
  3298.     {
  3299.       &push_dist_common ($auxdir . '/' . $cfile);
  3300.     }
  3301.     }
  3302.  
  3303.   # We might copy elements from $configure_dist_common to
  3304.   # %dist_common if we think we need to.  If the file appears in our
  3305.   # directory, we would have discovered it already, so we don't
  3306.   # check that.  But if the file is in a subdir without a Makefile,
  3307.   # we want to distribute it here if we are doing `.'.  Ugly!
  3308.   if ($relative_dir eq '.')
  3309.     {
  3310.       foreach my $file (split (' ' , $configure_dist_common))
  3311.     {
  3312.       push_dist_common ($file)
  3313.         unless is_make_dir (dirname ($file));
  3314.     }
  3315.     }
  3316.  
  3317.   # Files to distributed.  Don't use ->value_as_list_recursive
  3318.   # as it recursively expands `$(dist_pkgdata_DATA)' etc.
  3319.   my @dist_common = split (' ', rvar ('DIST_COMMON')->variable_value);
  3320.   @dist_common = uniq (sort for_dist_common (@dist_common));
  3321.   variable_delete 'DIST_COMMON';
  3322.   define_pretty_variable ('DIST_COMMON', TRUE, INTERNAL, @dist_common);
  3323.  
  3324.   # Now that we've processed DIST_COMMON, disallow further attempts
  3325.   # to set it.
  3326.   $handle_dist_run = 1;
  3327.  
  3328.   # Scan EXTRA_DIST to see if we need to distribute anything from a
  3329.   # subdir.  If so, add it to the list.  I didn't want to do this
  3330.   # originally, but there were so many requests that I finally
  3331.   # relented.
  3332.   my $extra_dist = var ('EXTRA_DIST');
  3333.   if ($extra_dist)
  3334.     {
  3335.       # FIXME: This should be fixed to work with conditions.  That
  3336.       # will require only making the entries in %dist_dirs under the
  3337.       # appropriate condition.  This is meaningful if the nature of
  3338.       # the distribution should depend upon the configure options
  3339.       # used.
  3340.       foreach ($extra_dist->value_as_list_recursive)
  3341.     {
  3342.       next if /^\@.*\@$/;
  3343.       next unless s,/+[^/]+$,,;
  3344.       $dist_dirs{$_} = 1
  3345.         unless $_ eq '.';
  3346.     }
  3347.     }
  3348.  
  3349.   # We have to check DIST_COMMON for extra directories in case the
  3350.   # user put a source used in AC_OUTPUT into a subdir.
  3351.   my $topsrcdir = backname ($relative_dir);
  3352.   foreach (rvar ('DIST_COMMON')->value_as_list_recursive)
  3353.     {
  3354.       next if /^\@.*\@$/;
  3355.       s/\$\(top_srcdir\)/$topsrcdir/;
  3356.       s/\$\(srcdir\)/./;
  3357.       # Strip any leading `./'.
  3358.       s,^(:?\./+)*,,;
  3359.       next unless s,/+[^/]+$,,;
  3360.       $dist_dirs{$_} = 1
  3361.     unless $_ eq '.';
  3362.     }
  3363.  
  3364.   $transform{'DISTCHECK-HOOK'} = !! rule 'distcheck-hook';
  3365.   $transform{'GETTEXT'} = $seen_gettext && !$seen_gettext_external;
  3366.  
  3367.   # Prepend $(distdir) to each directory given.
  3368.   my %rewritten = map { '$(distdir)/' . "$_" => 1 } keys %dist_dirs;
  3369.   $transform{'DISTDIRS'} = join (' ', sort keys %rewritten);
  3370.  
  3371.   # If the target `dist-hook' exists, make sure it is run.  This
  3372.   # allows users to do random weird things to the distribution
  3373.   # before it is packaged up.
  3374.   push (@dist_targets, 'dist-hook')
  3375.     if rule 'dist-hook';
  3376.   $transform{'DIST-TARGETS'} = join (' ', @dist_targets);
  3377.  
  3378.   $output_rules .= &file_contents ('distdir',
  3379.                    new Automake::Location,
  3380.                    %transform);
  3381. }
  3382.  
  3383.  
  3384. # &handle_subdirs ()
  3385. # ------------------
  3386. # Handle subdirectories.
  3387. sub handle_subdirs ()
  3388. {
  3389.   my $subdirs = var ('SUBDIRS');
  3390.   return
  3391.     unless $subdirs;
  3392.  
  3393.   my @subdirs = $subdirs->value_as_list_recursive;
  3394.   my @dsubdirs = ();
  3395.   my $dsubdirs = var ('DIST_SUBDIRS');
  3396.   @dsubdirs = $dsubdirs->value_as_list_recursive
  3397.     if $dsubdirs;
  3398.  
  3399.   # If an `obj/' directory exists, BSD make will enter it before
  3400.   # reading `Makefile'.  Hence the `Makefile' in the current directory
  3401.   # will not be read.
  3402.   #
  3403.   #  % cat Makefile
  3404.   #  all:
  3405.   #          echo Hello
  3406.   #  % cat obj/Makefile
  3407.   #  all:
  3408.   #          echo World
  3409.   #  % make      # GNU make
  3410.   #  echo Hello
  3411.   #  Hello
  3412.   #  % pmake     # BSD make
  3413.   #  echo World
  3414.   #  World
  3415.   msg_var ('portability', 'SUBDIRS',
  3416.        "naming a subdirectory `obj' causes troubles with BSD make")
  3417.     if grep ($_ eq 'obj', @subdirs);
  3418.   msg_var ('portability', 'DIST_SUBDIRS',
  3419.        "naming a subdirectory `obj' causes troubles with BSD make")
  3420.     if grep ($_ eq 'obj', @dsubdirs);
  3421.  
  3422.   # Make sure each directory mentioned in SUBDIRS actually exists.
  3423.   foreach my $dir (@subdirs)
  3424.     {
  3425.       # Skip directories substituted by configure.
  3426.       next if $dir =~ /^\@.*\@$/;
  3427.  
  3428.       if (! -d $relative_dir . '/' . $dir)
  3429.     {
  3430.       err_var ('SUBDIRS', "required directory $relative_dir/$dir "
  3431.            . "does not exist");
  3432.       next;
  3433.     }
  3434.  
  3435.       err_var 'SUBDIRS', "directory should not contain `/'"
  3436.     if $dir =~ /\//;
  3437.     }
  3438.  
  3439.   $output_rules .= &file_contents ('subdirs', new Automake::Location);
  3440.   rvar ('RECURSIVE_TARGETS')->rdef (TRUE)->{'pretty'} = VAR_SORTED; # Gross!
  3441. }
  3442.  
  3443.  
  3444. # ($REGEN, @DEPENDENCIES)
  3445. # &scan_aclocal_m4
  3446. # ----------------
  3447. # If aclocal.m4 creation is automated, return the list of its dependencies.
  3448. sub scan_aclocal_m4 ()
  3449. {
  3450.   my $regen_aclocal = 0;
  3451.  
  3452.   set_seen 'CONFIG_STATUS_DEPENDENCIES';
  3453.   set_seen 'CONFIGURE_DEPENDENCIES';
  3454.  
  3455.   if (-f 'aclocal.m4')
  3456.     {
  3457.       &define_variable ("ACLOCAL_M4", '$(top_srcdir)/aclocal.m4', INTERNAL);
  3458.  
  3459.       my $aclocal = new Automake::XFile "< aclocal.m4";
  3460.       my $line = $aclocal->getline;
  3461.       $regen_aclocal = $line =~ 'generated automatically by aclocal';
  3462.     }
  3463.  
  3464.   my @ac_deps = ();
  3465.  
  3466.   if (set_seen ('ACLOCAL_M4_SOURCES'))
  3467.     {
  3468.       push (@ac_deps, '$(ACLOCAL_M4_SOURCES)');
  3469.       msg_var ('obsolete', 'ACLOCAL_M4_SOURCES',
  3470.            "`ACLOCAL_M4_SOURCES' is obsolete.\n"
  3471.            . "It should be safe to simply remove it.");
  3472.     }
  3473.  
  3474.   # Note that it might be possible that aclocal.m4 doesn't exist but
  3475.   # should be auto-generated.  This case probably isn't very
  3476.   # important.
  3477.  
  3478.   return ($regen_aclocal, @ac_deps);
  3479. }
  3480.  
  3481.  
  3482. # @DEPENDENCIES
  3483. # &prepend_srcdir (@INPUTS)
  3484. # -------------------------
  3485. # Prepend $(srcdir) or $(top_srcdir) to all @INPUTS.  The idea is that
  3486. # if an input file has a directory part the same as the current
  3487. # directory, then the directory part is simply replaced by $(srcdir).
  3488. # But if the directory part is different, then $(top_srcdir) is
  3489. # prepended.
  3490. sub prepend_srcdir (@)
  3491. {
  3492.   my (@inputs) = @_;
  3493.   my @newinputs;
  3494.  
  3495.   foreach my $single (@inputs)
  3496.     {
  3497.       if (dirname ($single) eq $relative_dir)
  3498.     {
  3499.       push (@newinputs, '$(srcdir)/' . basename ($single));
  3500.     }
  3501.       else
  3502.     {
  3503.       push (@newinputs, '$(top_srcdir)/' . $single);
  3504.     }
  3505.     }
  3506.   return @newinputs;
  3507. }
  3508.  
  3509. # @DEPENDENCIES
  3510. # rewrite_inputs_into_dependencies ($OUTPUT, @INPUTS)
  3511. # ---------------------------------------------------
  3512. # Compute a list of dependencies appropriate for the rebuild
  3513. # rule of
  3514. #   AC_CONFIG_FILES($OUTPUT:$INPUT[0]:$INPUTS[1]:...)
  3515. # Also distribute $INPUTs which are not build by another AC_CONFIG_FILES.
  3516. sub rewrite_inputs_into_dependencies ($@)
  3517. {
  3518.   my ($file, @inputs) = @_;
  3519.   my @res = ();
  3520.  
  3521.   for my $i (@inputs)
  3522.     {
  3523.       if (exists $ac_config_files_location{$i})
  3524.     {
  3525.       my $di = dirname $i;
  3526.       if ($di eq $relative_dir)
  3527.         {
  3528.           $i = basename $i;
  3529.         }
  3530.       # In the top-level Makefile we do not use $(top_builddir), because
  3531.       # we are already there, and since the targets are built without
  3532.       # a $(top_builddir), it helps BSD Make to match them with
  3533.       # dependencies.
  3534.       elsif ($relative_dir ne '.')
  3535.         {
  3536.           $i = '$(top_builddir)/' . $i;
  3537.         }
  3538.     }
  3539.       else
  3540.     {
  3541.       msg ('error', $ac_config_files_location{$file},
  3542.            "required file `$i' not found")
  3543.         unless exists $output_files{$i} || -f $i;
  3544.       ($i) = prepend_srcdir ($i);
  3545.       push_dist_common ($i);
  3546.     }
  3547.       push @res, $i;
  3548.     }
  3549.   return @res;
  3550. }
  3551.  
  3552.  
  3553.  
  3554. # &handle_configure ($MAKEFILE_AM, $MAKEFILE_IN, $MAKEFILE, @INPUTS)
  3555. # ------------------------------------------------------------------
  3556. # Handle remaking and configure stuff.
  3557. # We need the name of the input file, to do proper remaking rules.
  3558. sub handle_configure ($$$@)
  3559. {
  3560.   my ($makefile_am, $makefile_in, $makefile, @inputs) = @_;
  3561.  
  3562.   prog_error 'empty @inputs'
  3563.     unless @inputs;
  3564.  
  3565.   my ($rel_makefile_am, $rel_makefile_in) = prepend_srcdir ($makefile_am,
  3566.                                 $makefile_in);
  3567.   my $rel_makefile = basename $makefile;
  3568.  
  3569.   my $colon_infile = ':' . join (':', @inputs);
  3570.   $colon_infile = '' if $colon_infile eq ":$makefile.in";
  3571.   my @rewritten = rewrite_inputs_into_dependencies ($makefile, @inputs);
  3572.   my ($regen_aclocal_m4, @aclocal_m4_deps) = scan_aclocal_m4;
  3573.   define_pretty_variable ('am__aclocal_m4_deps', TRUE, INTERNAL,
  3574.               @configure_deps, @aclocal_m4_deps,
  3575.               '$(top_srcdir)/' . $configure_ac);
  3576.   my @configuredeps = ('$(am__aclocal_m4_deps)', '$(CONFIGURE_DEPENDENCIES)');
  3577.   push @configuredeps, '$(ACLOCAL_M4)' if -f 'aclocal.m4';
  3578.   define_pretty_variable ('am__configure_deps', TRUE, INTERNAL,
  3579.               @configuredeps);
  3580.  
  3581.   $output_rules .= file_contents
  3582.     ('configure',
  3583.      new Automake::Location,
  3584.      MAKEFILE              => $rel_makefile,
  3585.      'MAKEFILE-DEPS'       => "@rewritten",
  3586.      'CONFIG-MAKEFILE'     => ($relative_dir eq '.') ? '$@' : '$(subdir)/$@',
  3587.      'MAKEFILE-IN'         => $rel_makefile_in,
  3588.      'MAKEFILE-IN-DEPS'    => "@include_stack",
  3589.      'MAKEFILE-AM'         => $rel_makefile_am,
  3590.      STRICTNESS            => global_option 'cygnus'
  3591.                                 ? 'cygnus' : $strictness_name,
  3592.      'USE-DEPS'            => global_option 'no-dependencies'
  3593.                                 ? ' --ignore-deps' : '',
  3594.      'MAKEFILE-AM-SOURCES' => "$makefile$colon_infile",
  3595.      'REGEN-ACLOCAL-M4'    => $regen_aclocal_m4);
  3596.  
  3597.   if ($relative_dir eq '.')
  3598.     {
  3599.       &push_dist_common ('acconfig.h')
  3600.     if -f 'acconfig.h';
  3601.     }
  3602.  
  3603.   # If we have a configure header, require it.
  3604.   my $hdr_index = 0;
  3605.   my @distclean_config;
  3606.   foreach my $spec (@config_headers)
  3607.     {
  3608.       $hdr_index += 1;
  3609.       # $CONFIG_H_PATH: config.h from top level.
  3610.       my ($config_h_path, @ins) = split_config_file_spec ($spec);
  3611.       my $config_h_dir = dirname ($config_h_path);
  3612.  
  3613.       # If the header is in the current directory we want to build
  3614.       # the header here.  Otherwise, if we're at the topmost
  3615.       # directory and the header's directory doesn't have a
  3616.       # Makefile, then we also want to build the header.
  3617.       if ($relative_dir eq $config_h_dir
  3618.       || ($relative_dir eq '.' && ! &is_make_dir ($config_h_dir)))
  3619.     {
  3620.       my ($cn_sans_dir, $stamp_dir);
  3621.       if ($relative_dir eq $config_h_dir)
  3622.         {
  3623.           $cn_sans_dir = basename ($config_h_path);
  3624.           $stamp_dir = '';
  3625.         }
  3626.       else
  3627.         {
  3628.           $cn_sans_dir = $config_h_path;
  3629.           if ($config_h_dir eq '.')
  3630.         {
  3631.           $stamp_dir = '';
  3632.         }
  3633.           else
  3634.         {
  3635.           $stamp_dir = $config_h_dir . '/';
  3636.         }
  3637.         }
  3638.  
  3639.       # This will also distribute all inputs.
  3640.       @ins = rewrite_inputs_into_dependencies ($config_h_path, @ins);
  3641.  
  3642.       # Header defined and in this directory.
  3643.       my @files;
  3644.       if (-f $config_h_path . '.top')
  3645.         {
  3646.           push (@files, "$cn_sans_dir.top");
  3647.         }
  3648.       if (-f $config_h_path . '.bot')
  3649.         {
  3650.           push (@files, "$cn_sans_dir.bot");
  3651.         }
  3652.  
  3653.       push_dist_common (@files);
  3654.  
  3655.       # For now, acconfig.h can only appear in the top srcdir.
  3656.       if (-f 'acconfig.h')
  3657.         {
  3658.           push (@files, '$(top_srcdir)/acconfig.h');
  3659.         }
  3660.  
  3661.       my $stamp = "${stamp_dir}stamp-h${hdr_index}";
  3662.       $output_rules .=
  3663.         file_contents ('remake-hdr',
  3664.                new Automake::Location,
  3665.                FILES            => "@files",
  3666.                CONFIG_H         => $cn_sans_dir,
  3667.                CONFIG_HIN       => $ins[0],
  3668.                CONFIG_H_DEPS    => "@ins",
  3669.                CONFIG_H_PATH    => $config_h_path,
  3670.                FIRST_CONFIG_HIN => ($hdr_index == 1),
  3671.                STAMP            => "$stamp");
  3672.  
  3673.       push @distclean_config, $cn_sans_dir, $stamp;
  3674.     }
  3675.     }
  3676.  
  3677.   $output_rules .= file_contents ('clean-hdr',
  3678.                   new Automake::Location,
  3679.                   FILES => "@distclean_config")
  3680.     if @distclean_config;
  3681.  
  3682.   # Distribute and define mkinstalldirs only if it is already present
  3683.   # in the package, for backward compatibility (some people my still
  3684.   # use $(mkinstalldirs)).
  3685.   my $mkidpath = $config_aux_path[0] . '/mkinstalldirs';
  3686.   if (-f $mkidpath)
  3687.     {
  3688.       # Use require_file so that any existingscript gets updated
  3689.       # by --force-missing.
  3690.       require_conf_file ($mkidpath, FOREIGN, 'mkinstalldirs');
  3691.       define_variable ('mkinstalldirs',
  3692.                "\$(SHELL) $config_aux_dir/mkinstalldirs", INTERNAL);
  3693.     }
  3694.   else
  3695.     {
  3696.       define_variable ('mkinstalldirs', '$(mkdir_p)', INTERNAL);
  3697.     }
  3698.  
  3699.   reject_var ('CONFIG_HEADER',
  3700.           "`CONFIG_HEADER' is an anachronism; now determined "
  3701.           . "automatically\nfrom `$configure_ac'");
  3702.  
  3703.   my @config_h;
  3704.   foreach my $spec (@config_headers)
  3705.     {
  3706.       my ($out, @ins) = split_config_file_spec ($spec);
  3707.       # Generate CONFIG_HEADER define.
  3708.       if ($relative_dir eq dirname ($out))
  3709.     {
  3710.       push @config_h, basename ($out);
  3711.     }
  3712.       else
  3713.     {
  3714.       push @config_h, "\$(top_builddir)/$out";
  3715.     }
  3716.     }
  3717.   define_variable ("CONFIG_HEADER", "@config_h", INTERNAL)
  3718.     if @config_h;
  3719.  
  3720.   # Now look for other files in this directory which must be remade
  3721.   # by config.status, and generate rules for them.
  3722.   my @actual_other_files = ();
  3723.   foreach my $lfile (@other_input_files)
  3724.     {
  3725.       my $file;
  3726.       my @inputs;
  3727.       if ($lfile =~ /^([^:]*):(.*)$/)
  3728.     {
  3729.       # This is the ":" syntax of AC_OUTPUT.
  3730.       $file = $1;
  3731.       @inputs = split (':', $2);
  3732.     }
  3733.       else
  3734.     {
  3735.       # Normal usage.
  3736.       $file = $lfile;
  3737.       @inputs = $file . '.in';
  3738.     }
  3739.  
  3740.       # Automake files should not be stored in here, but in %MAKE_LIST.
  3741.       prog_error ("$lfile in \@other_input_files\n"
  3742.           . "\@other_input_files = (@other_input_files)")
  3743.     if -f $file . '.am';
  3744.  
  3745.       my $local = basename ($file);
  3746.  
  3747.       # Make sure the dist directory for each input file is created.
  3748.       # We only have to do this at the topmost level though.  This
  3749.       # is a bit ugly but it easier than spreading out the logic,
  3750.       # especially in cases like AC_OUTPUT(foo/out:bar/in), where
  3751.       # there is no Makefile in bar/.
  3752.       if ($relative_dir eq '.')
  3753.     {
  3754.       foreach (@inputs)
  3755.         {
  3756.           $dist_dirs{dirname ($_)} = 1;
  3757.         }
  3758.     }
  3759.  
  3760.       # We skip files that aren't in this directory.  However, if
  3761.       # the file's directory does not have a Makefile, and we are
  3762.       # currently doing `.', then we create a rule to rebuild the
  3763.       # file in the subdir.
  3764.       my $fd = dirname ($file);
  3765.       if ($fd ne $relative_dir)
  3766.     {
  3767.       if ($relative_dir eq '.' && ! &is_make_dir ($fd))
  3768.         {
  3769.           $local = $file;
  3770.         }
  3771.       else
  3772.         {
  3773.           next;
  3774.         }
  3775.     }
  3776.  
  3777.       my @rewritten_inputs = rewrite_inputs_into_dependencies ($file, @inputs);
  3778.  
  3779.       $output_rules .= ($local . ': '
  3780.             . '$(top_builddir)/config.status '
  3781.             . "@rewritten_inputs\n"
  3782.             . "\t"
  3783.             . 'cd $(top_builddir) && '
  3784.             . '$(SHELL) ./config.status '
  3785.             . ($relative_dir eq '.' ? '' : '$(subdir)/')
  3786.             . '$@'
  3787.             . "\n");
  3788.       push (@actual_other_files, $local);
  3789.     }
  3790.  
  3791.   # For links we should clean destinations and distribute sources.
  3792.   foreach my $spec (@config_links)
  3793.     {
  3794.       my ($link, $file) = split /:/, $spec;
  3795.       # Some people do AC_CONFIG_LINKS($computed).  We only handle
  3796.       # the DEST:SRC form.
  3797.       next unless $file;
  3798.       my $where = $ac_config_files_location{$link};
  3799.  
  3800.       # Skip destinations that contain shell variables.
  3801.       if ($link !~ /\$/)
  3802.     {
  3803.       # We skip links that aren't in this directory.  However, if
  3804.       # the link's directory does not have a Makefile, and we are
  3805.       # currently doing `.', then we add the link to CONFIG_CLEAN_FILES
  3806.       # in `.'s Makefile.in.
  3807.       my $local = basename ($link);
  3808.       my $fd = dirname ($link);
  3809.       if ($fd ne $relative_dir)
  3810.         {
  3811.           if ($relative_dir eq '.' && ! &is_make_dir ($fd))
  3812.         {
  3813.           $local = $link;
  3814.         }
  3815.           else
  3816.         {
  3817.           $local = undef;
  3818.         }
  3819.         }
  3820.       push @actual_other_files, $local if $local;
  3821.     }
  3822.  
  3823.       # Do not process sources that contain shell variables.
  3824.       if ($file !~ /\$/)
  3825.     {
  3826.       my $fd = dirname ($file);
  3827.  
  3828.       # Make sure the dist directory for each input file is created.
  3829.       # We only have to do this at the topmost level though.
  3830.       if ($relative_dir eq '.')
  3831.         {
  3832.           $dist_dirs{$fd} = 1;
  3833.         }
  3834.  
  3835.       # We distribute files that are in this directory.
  3836.       # At the top-level (`.') we also distribute files whose
  3837.       # directory does not have a Makefile.
  3838.       if (($fd eq $relative_dir)
  3839.           || ($relative_dir eq '.' && ! &is_make_dir ($fd)))
  3840.         {
  3841.           # The following will distribute $file as a side-effect when
  3842.           # it is appropriate (i.e., when $file is not already an output).
  3843.           # We do not need the result, just the side-effect.
  3844.           rewrite_inputs_into_dependencies ($link, $file);
  3845.         }
  3846.     }
  3847.     }
  3848.  
  3849.   # These files get removed by "make distclean".
  3850.   define_pretty_variable ('CONFIG_CLEAN_FILES', TRUE, INTERNAL,
  3851.               @actual_other_files);
  3852. }
  3853.  
  3854. # Handle C headers.
  3855. sub handle_headers
  3856. {
  3857.     my @r = &am_install_var ('-defaultdist', 'header', 'HEADERS', 'include',
  3858.                  'oldinclude', 'pkginclude',
  3859.                  'noinst', 'check');
  3860.     foreach (@r)
  3861.     {
  3862.       next unless $_->[1] =~ /\..*$/;
  3863.       &saw_extension ($&);
  3864.     }
  3865. }
  3866.  
  3867. sub handle_gettext
  3868. {
  3869.   return if ! $seen_gettext || $relative_dir ne '.';
  3870.  
  3871.   my $subdirs = var 'SUBDIRS';
  3872.  
  3873.   if (! $subdirs)
  3874.     {
  3875.       err_ac "AM_GNU_GETTEXT used but SUBDIRS not defined";
  3876.       return;
  3877.     }
  3878.  
  3879.   # Perform some sanity checks to help users get the right setup.
  3880.   # We disable these tests when po/ doesn't exist in order not to disallow
  3881.   # unusual gettext setups.
  3882.   #
  3883.   # Bruno Haible:
  3884.   # | The idea is:
  3885.   # |
  3886.   # |  1) If a package doesn't have a directory po/ at top level, it
  3887.   # |     will likely have multiple po/ directories in subpackages.
  3888.   # |
  3889.   # |  2) It is useful to warn for the absence of intl/ if AM_GNU_GETTEXT
  3890.   # |     is used without 'external'. It is also useful to warn for the
  3891.   # |     presence of intl/ if AM_GNU_GETTEXT([external]) is used. Both
  3892.   # |     warnings apply only to the usual layout of packages, therefore
  3893.   # |     they should both be disabled if no po/ directory is found at
  3894.   # |     top level.
  3895.  
  3896.   if (-d 'po')
  3897.     {
  3898.       my @subdirs = $subdirs->value_as_list_recursive;
  3899.  
  3900.       msg_var ('syntax', $subdirs,
  3901.            "AM_GNU_GETTEXT used but `po' not in SUBDIRS")
  3902.     if ! grep ($_ eq 'po', @subdirs);
  3903.  
  3904.       # intl/ is not required when AM_GNU_GETTEXT is called with
  3905.       # the `external' option.
  3906.       msg_var ('syntax', $subdirs,
  3907.            "AM_GNU_GETTEXT used but `intl' not in SUBDIRS")
  3908.     if (! $seen_gettext_external
  3909.         && ! grep ($_ eq 'intl', @subdirs));
  3910.  
  3911.       # intl/ should not be used with AM_GNU_GETTEXT([external])
  3912.       msg_var ('syntax', $subdirs,
  3913.            "`intl' should not be in SUBDIRS when "
  3914.            . "AM_GNU_GETTEXT([external]) is used")
  3915.     if ($seen_gettext_external && grep ($_ eq 'intl', @subdirs));
  3916.     }
  3917.  
  3918.   require_file ($ac_gettext_location, GNU, 'ABOUT-NLS');
  3919. }
  3920.  
  3921. # Handle footer elements.
  3922. sub handle_footer
  3923. {
  3924.     # NOTE don't use define_pretty_variable here, because
  3925.     # $contents{...} is already defined.
  3926.     $output_vars .= 'SOURCES = ' . variable_value ('SOURCES') . "\n\n"
  3927.       if variable_value ('SOURCES');
  3928.  
  3929.     reject_rule ('.SUFFIXES',
  3930.          "use variable `SUFFIXES', not target `.SUFFIXES'");
  3931.  
  3932.     # Note: AIX 4.1 /bin/make will fail if any suffix rule appears
  3933.     # before .SUFFIXES.  So we make sure that .SUFFIXES appears before
  3934.     # anything else, by sticking it right after the default: target.
  3935.     $output_header .= ".SUFFIXES:\n";
  3936.     my $suffixes = var 'SUFFIXES';
  3937.     my @suffixes = Automake::Rule::suffixes;
  3938.     if (@suffixes || $suffixes)
  3939.     {
  3940.     # Make sure SUFFIXES has unique elements.  Sort them to ensure
  3941.     # the output remains consistent.  However, $(SUFFIXES) is
  3942.     # always at the start of the list, unsorted.  This is done
  3943.     # because make will choose rules depending on the ordering of
  3944.     # suffixes, and this lets the user have some control.  Push
  3945.     # actual suffixes, and not $(SUFFIXES).  Some versions of make
  3946.     # do not like variable substitutions on the .SUFFIXES line.
  3947.     my @user_suffixes = ($suffixes
  3948.                  ? $suffixes->value_as_list_recursive : ());
  3949.  
  3950.     my %suffixes = map { $_ => 1 } @suffixes;
  3951.     delete @suffixes{@user_suffixes};
  3952.  
  3953.     $output_header .= (".SUFFIXES: "
  3954.                . join (' ', @user_suffixes, sort keys %suffixes)
  3955.                . "\n");
  3956.     }
  3957.  
  3958.     $output_trailer .= file_contents ('footer', new Automake::Location);
  3959. }
  3960.  
  3961.  
  3962. # Generate `make install' rules.
  3963. sub handle_install ()
  3964. {
  3965.   $output_rules .= &file_contents
  3966.     ('install',
  3967.      new Automake::Location,
  3968.      maybe_BUILT_SOURCES => (set_seen ('BUILT_SOURCES')
  3969.                  ? (" \$(BUILT_SOURCES)\n"
  3970.                 . "\t\$(MAKE) \$(AM_MAKEFLAGS)")
  3971.                  : ''),
  3972.      'installdirs-local' => (rule 'installdirs-local'
  3973.                  ? ' installdirs-local' : ''),
  3974.      am__installdirs => variable_value ('am__installdirs') || '');
  3975. }
  3976.  
  3977.  
  3978. # Deal with all and all-am.
  3979. sub handle_all ($)
  3980. {
  3981.     my ($makefile) = @_;
  3982.  
  3983.     # Output `all-am'.
  3984.  
  3985.     # Put this at the beginning for the sake of non-GNU makes.  This
  3986.     # is still wrong if these makes can run parallel jobs.  But it is
  3987.     # right enough.
  3988.     unshift (@all, basename ($makefile));
  3989.  
  3990.     foreach my $spec (@config_headers)
  3991.       {
  3992.         my ($out, @ins) = split_config_file_spec ($spec);
  3993.     push (@all, basename ($out))
  3994.       if dirname ($out) eq $relative_dir;
  3995.       }
  3996.  
  3997.     # Install `all' hooks.
  3998.     if (rule "all-local")
  3999.     {
  4000.       push (@all, "all-local");
  4001.       &depend ('.PHONY', "all-local");
  4002.     }
  4003.  
  4004.     &pretty_print_rule ("all-am:", "\t\t", @all);
  4005.     &depend ('.PHONY', 'all-am', 'all');
  4006.  
  4007.  
  4008.     # Output `all'.
  4009.  
  4010.     my @local_headers = ();
  4011.     push @local_headers, '$(BUILT_SOURCES)'
  4012.       if var ('BUILT_SOURCES');
  4013.     foreach my $spec (@config_headers)
  4014.       {
  4015.         my ($out, @ins) = split_config_file_spec ($spec);
  4016.     push @local_headers, basename ($out)
  4017.       if dirname ($out) eq $relative_dir;
  4018.       }
  4019.  
  4020.     if (@local_headers)
  4021.       {
  4022.     # We need to make sure config.h is built before we recurse.
  4023.     # We also want to make sure that built sources are built
  4024.     # before any ordinary `all' targets are run.  We can't do this
  4025.     # by changing the order of dependencies to the "all" because
  4026.     # that breaks when using parallel makes.  Instead we handle
  4027.     # things explicitly.
  4028.     $output_all .= ("all: @local_headers"
  4029.             . "\n\t"
  4030.             . '$(MAKE) $(AM_MAKEFLAGS) '
  4031.             . (var ('SUBDIRS') ? 'all-recursive' : 'all-am')
  4032.             . "\n\n");
  4033.       }
  4034.     else
  4035.       {
  4036.     $output_all .= "all: " . (var ('SUBDIRS')
  4037.                   ? 'all-recursive' : 'all-am') . "\n\n";
  4038.       }
  4039. }
  4040.  
  4041.  
  4042. # &do_check_merge_target ()
  4043. # -------------------------
  4044. # Handle check merge target specially.
  4045. sub do_check_merge_target ()
  4046. {
  4047.   if (rule 'check-local')
  4048.     {
  4049.       # User defined local form of target.  So include it.
  4050.       push @check_tests, 'check-local';
  4051.       depend '.PHONY', 'check-local';
  4052.     }
  4053.  
  4054.   # In --cygnus mode, check doesn't depend on all.
  4055.   if (option 'cygnus')
  4056.     {
  4057.       # Just run the local check rules.
  4058.       pretty_print_rule ('check-am:', "\t\t", @check);
  4059.     }
  4060.   else
  4061.     {
  4062.       # The check target must depend on the local equivalent of
  4063.       # `all', to ensure all the primary targets are built.  Then it
  4064.       # must build the local check rules.
  4065.       $output_rules .= "check-am: all-am\n";
  4066.       pretty_print_rule ("\t\$(MAKE) \$(AM_MAKEFLAGS)", "\t  ",
  4067.              @check)
  4068.     if @check;
  4069.     }
  4070.   pretty_print_rule ("\t\$(MAKE) \$(AM_MAKEFLAGS)", "\t  ",
  4071.              @check_tests)
  4072.     if @check_tests;
  4073.  
  4074.   depend '.PHONY', 'check', 'check-am';
  4075.   # Handle recursion.  We have to honor BUILT_SOURCES like for `all:'.
  4076.   $output_rules .= ("check: "
  4077.             . (var ('BUILT_SOURCES')
  4078.                ? "\$(BUILT_SOURCES)\n\t\$(MAKE) \$(AM_MAKEFLAGS) "
  4079.                : '')
  4080.             . (var ('SUBDIRS') ? 'check-recursive' : 'check-am')
  4081.             . "\n");
  4082. }
  4083.  
  4084. # handle_clean ($MAKEFILE)
  4085. # ------------------------
  4086. # Handle all 'clean' targets.
  4087. sub handle_clean ($)
  4088. {
  4089.   my ($makefile) = @_;
  4090.  
  4091.   # Clean the files listed in user variables if they exist.
  4092.   $clean_files{'$(MOSTLYCLEANFILES)'} = MOSTLY_CLEAN
  4093.     if var ('MOSTLYCLEANFILES');
  4094.   $clean_files{'$(CLEANFILES)'} = CLEAN
  4095.     if var ('CLEANFILES');
  4096.   $clean_files{'$(DISTCLEANFILES)'} = DIST_CLEAN
  4097.     if var ('DISTCLEANFILES');
  4098.   $clean_files{'$(MAINTAINERCLEANFILES)'} = MAINTAINER_CLEAN
  4099.     if var ('MAINTAINERCLEANFILES');
  4100.  
  4101.   # Built sources are automatically removed by maintainer-clean.
  4102.   $clean_files{'$(BUILT_SOURCES)'} = MAINTAINER_CLEAN
  4103.     if var ('BUILT_SOURCES');
  4104.  
  4105.   # Compute a list of "rm"s to run for each target.
  4106.   my %rms = (MOSTLY_CLEAN, [],
  4107.          CLEAN, [],
  4108.          DIST_CLEAN, [],
  4109.          MAINTAINER_CLEAN, []);
  4110.  
  4111.   foreach my $file (keys %clean_files)
  4112.     {
  4113.       my $when = $clean_files{$file};
  4114.       prog_error 'invalid entry in %clean_files'
  4115.     unless exists $rms{$when};
  4116.  
  4117.       my $rm = "rm -f $file";
  4118.       # If file is a variable, make sure when don't call `rm -f' without args.
  4119.       $rm ="test -z \"$file\" || $rm"
  4120.     if ($file =~ /^\s*\$(\(.*\)|\{.*\})\s*$/);
  4121.  
  4122.       push @{$rms{$when}}, "\t-$rm\n";
  4123.     }
  4124.  
  4125.   $output_rules .= &file_contents
  4126.     ('clean',
  4127.      new Automake::Location,
  4128.      MOSTLYCLEAN_RMS      => join ('', @{$rms{&MOSTLY_CLEAN}}),
  4129.      CLEAN_RMS            => join ('', @{$rms{&CLEAN}}),
  4130.      DISTCLEAN_RMS        => join ('', @{$rms{&DIST_CLEAN}}),
  4131.      MAINTAINER_CLEAN_RMS => join ('', @{$rms{&MAINTAINER_CLEAN}}),
  4132.      MAKEFILE             => basename $makefile,
  4133.      );
  4134. }
  4135.  
  4136.  
  4137. # &target_cmp ($A, $B)
  4138. # --------------------
  4139. # Subroutine for &handle_factored_dependencies to let `.PHONY' be last.
  4140. sub target_cmp
  4141. {
  4142.     return 0
  4143.         if $a eq $b;
  4144.     return -1
  4145.         if $b eq '.PHONY';
  4146.     return 1
  4147.         if $a eq '.PHONY';
  4148.     return $a cmp $b;
  4149. }
  4150.  
  4151.  
  4152. # &handle_factored_dependencies ()
  4153. # --------------------------------
  4154. # Handle everything related to gathered targets.
  4155. sub handle_factored_dependencies
  4156. {
  4157.   # Reject bad hooks.
  4158.   foreach my $utarg ('uninstall-data-local', 'uninstall-data-hook',
  4159.              'uninstall-exec-local', 'uninstall-exec-hook')
  4160.     {
  4161.       my $x = $utarg;
  4162.       $x =~ s/(data|exec)-//;
  4163.       reject_rule ($utarg, "use `$x', not `$utarg'");
  4164.     }
  4165.  
  4166.   reject_rule ('install-local',
  4167.            "use `install-data-local' or `install-exec-local', "
  4168.            . "not `install-local'");
  4169.  
  4170.   reject_rule ('install-info-local',
  4171.            "`install-info-local' target defined but "
  4172.            . "`no-installinfo' option not in use")
  4173.     unless option 'no-installinfo';
  4174.  
  4175.   # Install the -local hooks.
  4176.   foreach (keys %dependencies)
  4177.     {
  4178.       # Hooks are installed on the -am targets.
  4179.       s/-am$// or next;
  4180.       if (rule "$_-local")
  4181.     {
  4182.       depend ("$_-am", "$_-local");
  4183.       depend ('.PHONY', "$_-local");
  4184.     }
  4185.     }
  4186.  
  4187.   # Install the -hook hooks.
  4188.   # FIXME: Why not be as liberal as we are with -local hooks?
  4189.   foreach ('install-exec', 'install-data', 'uninstall')
  4190.     {
  4191.       if (rule ("$_-hook"))
  4192.     {
  4193.       $actions{"$_-am"} .=
  4194.         ("\t\@\$(NORMAL_INSTALL)\n"
  4195.          . "\t" . '$(MAKE) $(AM_MAKEFLAGS) ' . "$_-hook\n");
  4196.     }
  4197.     }
  4198.  
  4199.   # All the required targets are phony.
  4200.   depend ('.PHONY', keys %required_targets);
  4201.  
  4202.   # Actually output gathered targets.
  4203.   foreach (sort target_cmp keys %dependencies)
  4204.     {
  4205.       # If there is nothing about this guy, skip it.
  4206.       next
  4207.     unless (@{$dependencies{$_}}
  4208.         || $actions{$_}
  4209.         || $required_targets{$_});
  4210.  
  4211.       # Define gathered targets in undefined conditions.
  4212.       # FIXME: Right now we must handle .PHONY as an exception,
  4213.       # because people write things like
  4214.       #    .PHONY: myphonytarget
  4215.       # to append dependencies.  This would not work if Automake
  4216.       # refrained from defining its own .PHONY target as it does
  4217.       # with other overridden targets.
  4218.       my @undefined_conds = (TRUE,);
  4219.       if ($_ ne '.PHONY')
  4220.     {
  4221.       @undefined_conds =
  4222.         Automake::Rule::define ($_, 'internal',
  4223.                     RULE_AUTOMAKE, TRUE, INTERNAL);
  4224.     }
  4225.       my @uniq_deps = uniq (sort @{$dependencies{$_}});
  4226.       foreach my $cond (@undefined_conds)
  4227.     {
  4228.       my $condstr = $cond->subst_string;
  4229.       &pretty_print_rule ("$condstr$_:", "$condstr\t", @uniq_deps);
  4230.       $output_rules .= $actions{$_} if defined $actions{$_};
  4231.       $output_rules .= "\n";
  4232.     }
  4233.     }
  4234. }
  4235.  
  4236.  
  4237. # &handle_tests_dejagnu ()
  4238. # ------------------------
  4239. sub handle_tests_dejagnu
  4240. {
  4241.     push (@check_tests, 'check-DEJAGNU');
  4242.     $output_rules .= file_contents ('dejagnu', new Automake::Location);
  4243. }
  4244.  
  4245.  
  4246. # Handle TESTS variable and other checks.
  4247. sub handle_tests
  4248. {
  4249.   if (option 'dejagnu')
  4250.     {
  4251.       &handle_tests_dejagnu;
  4252.     }
  4253.   else
  4254.     {
  4255.       foreach my $c ('DEJATOOL', 'RUNTEST', 'RUNTESTFLAGS')
  4256.     {
  4257.       reject_var ($c, "`$c' defined but `dejagnu' not in "
  4258.               . "`AUTOMAKE_OPTIONS'");
  4259.     }
  4260.     }
  4261.  
  4262.   if (var ('TESTS'))
  4263.     {
  4264.       push (@check_tests, 'check-TESTS');
  4265.       $output_rules .= &file_contents ('check', new Automake::Location);
  4266.     }
  4267. }
  4268.  
  4269. # Handle Emacs Lisp.
  4270. sub handle_emacs_lisp
  4271. {
  4272.   my @elfiles = &am_install_var ('-candist', 'lisp', 'LISP',
  4273.                  'lisp', 'noinst');
  4274.  
  4275.   return if ! @elfiles;
  4276.  
  4277.   define_pretty_variable ('am__ELFILES', TRUE, INTERNAL,
  4278.               map { $_->[1] } @elfiles);
  4279.   define_pretty_variable ('am__ELCFILES', TRUE, INTERNAL,
  4280.               '$(am__ELFILES:.el=.elc)');
  4281.   # This one can be overridden by users.
  4282.   define_pretty_variable ('ELCFILES', TRUE, INTERNAL, '$(am__ELCFILES)');
  4283.  
  4284.   push @all, '$(ELCFILES)';
  4285.  
  4286.   require_variables ($elfiles[0][0], "Emacs Lisp sources seen", TRUE,
  4287.              'EMACS', 'lispdir');
  4288.   require_conf_file ($elfiles[0][0], FOREIGN, 'elisp-comp');
  4289.   &define_variable ('elisp_comp', $config_aux_dir . '/elisp-comp', INTERNAL);
  4290. }
  4291.  
  4292. # Handle Python
  4293. sub handle_python
  4294. {
  4295.   my @pyfiles = &am_install_var ('-defaultdist', 'python', 'PYTHON',
  4296.                  'noinst');
  4297.   return if ! @pyfiles;
  4298.  
  4299.   require_variables ($pyfiles[0][0], "Python sources seen", TRUE, 'PYTHON');
  4300.   require_conf_file ($pyfiles[0][0], FOREIGN, 'py-compile');
  4301.   &define_variable ('py_compile', $config_aux_dir . '/py-compile', INTERNAL);
  4302. }
  4303.  
  4304. # Handle Java.
  4305. sub handle_java
  4306. {
  4307.     my @sourcelist = &am_install_var ('-candist',
  4308.                       'java', 'JAVA',
  4309.                       'java', 'noinst', 'check');
  4310.     return if ! @sourcelist;
  4311.  
  4312.     my @prefix = am_primary_prefixes ('JAVA', 1,
  4313.                       'java', 'noinst', 'check');
  4314.  
  4315.     my $dir;
  4316.     foreach my $curs (@prefix)
  4317.       {
  4318.     next
  4319.       if $curs eq 'EXTRA';
  4320.  
  4321.     err_var "${curs}_JAVA", "multiple _JAVA primaries in use"
  4322.       if defined $dir;
  4323.     $dir = $curs;
  4324.       }
  4325.  
  4326.  
  4327.     push (@all, 'class' . $dir . '.stamp');
  4328. }
  4329.  
  4330.  
  4331. # Handle some of the minor options.
  4332. sub handle_minor_options
  4333. {
  4334.   if (option 'readme-alpha')
  4335.     {
  4336.       if ($relative_dir eq '.')
  4337.     {
  4338.       if ($package_version !~ /^$GNITS_VERSION_PATTERN$/)
  4339.         {
  4340.           msg ('error-gnits', $package_version_location,
  4341.            "version `$package_version' doesn't follow " .
  4342.            "Gnits standards");
  4343.         }
  4344.       if (defined $1 && -f 'README-alpha')
  4345.         {
  4346.           # This means we have an alpha release.  See
  4347.           # GNITS_VERSION_PATTERN for details.
  4348.           push_dist_common ('README-alpha');
  4349.         }
  4350.     }
  4351.     }
  4352. }
  4353.  
  4354. ################################################################
  4355.  
  4356. # ($OUTPUT, @INPUTS)
  4357. # &split_config_file_spec ($SPEC)
  4358. # -------------------------------
  4359. # Decode the Autoconf syntax for config files (files, headers, links
  4360. # etc.).
  4361. sub split_config_file_spec ($)
  4362. {
  4363.   my ($spec) = @_;
  4364.   my ($output, @inputs) = split (/:/, $spec);
  4365.  
  4366.   push @inputs, "$output.in"
  4367.     unless @inputs;
  4368.  
  4369.   return ($output, @inputs);
  4370. }
  4371.  
  4372. # $input
  4373. # locate_am (@POSSIBLE_SOURCES)
  4374. # -----------------------------
  4375. # AC_CONFIG_FILES allow specifications such as Makefile:top.in:mid.in:bot.in
  4376. # This functions returns the first *.in file for which a *.am exists.
  4377. # It returns undef otherwise.
  4378. sub locate_am (@)
  4379. {
  4380.   my (@rest) = @_;
  4381.   my $input;
  4382.   foreach my $file (@rest)
  4383.     {
  4384.       if (($file =~ /^(.*)\.in$/) && -f "$1.am")
  4385.     {
  4386.       $input = $file;
  4387.       last;
  4388.     }
  4389.     }
  4390.   return $input;
  4391. }
  4392.  
  4393. my %make_list;
  4394.  
  4395. # &scan_autoconf_config_files ($WHERE, $CONFIG-FILES)
  4396. # ---------------------------------------------------
  4397. # Study $CONFIG-FILES which is the first argument to AC_CONFIG_FILES
  4398. # (or AC_OUTPUT).
  4399. sub scan_autoconf_config_files ($$)
  4400. {
  4401.   my ($where, $config_files) = @_;
  4402.  
  4403.   # Look at potential Makefile.am's.
  4404.   foreach (split ' ', $config_files)
  4405.     {
  4406.       # Must skip empty string for Perl 4.
  4407.       next if $_ eq "\\" || $_ eq '';
  4408.  
  4409.       # Handle $local:$input syntax.
  4410.       my ($local, @rest) = split (/:/);
  4411.       @rest = ("$local.in",) unless @rest;
  4412.       my $input = locate_am @rest;
  4413.       if ($input)
  4414.         {
  4415.       # We have a file that automake should generate.
  4416.       $make_list{$input} = join (':', ($local, @rest));
  4417.         }
  4418.       else
  4419.         {
  4420.       # We have a file that automake should cause to be
  4421.       # rebuilt, but shouldn't generate itself.
  4422.       push (@other_input_files, $_);
  4423.         }
  4424.       $ac_config_files_location{$local} = $where;
  4425.     }
  4426. }
  4427.  
  4428.  
  4429. # &scan_autoconf_traces ($FILENAME)
  4430. # ---------------------------------
  4431. sub scan_autoconf_traces ($)
  4432. {
  4433.   my ($filename) = @_;
  4434.  
  4435.   # Macros to trace, with their minimal number of arguments.
  4436.   my %traced = (
  4437.         AC_CANONICAL_HOST => 0,
  4438.         AC_CANONICAL_SYSTEM => 0,
  4439.         AC_CONFIG_AUX_DIR => 1,
  4440.         AC_CONFIG_FILES => 1,
  4441.         AC_CONFIG_HEADERS => 1,
  4442.         AC_CONFIG_LINKS => 1,
  4443.         AC_INIT => 0,
  4444.         AC_LIBSOURCE => 1,
  4445.         AC_SUBST => 1,
  4446.         AM_AUTOMAKE_VERSION => 1,
  4447.         AM_CONDITIONAL => 2,
  4448.         AM_ENABLE_MULTILIB => 0,
  4449.         AM_GNU_GETTEXT => 0,
  4450.         AM_INIT_AUTOMAKE => 0,
  4451.         AM_MAINTAINER_MODE => 0,
  4452.         AM_PROG_CC_C_O => 0,
  4453.         m4_include => 1,
  4454.         m4_sinclude => 1,
  4455.         sinclude => 1,
  4456.           );
  4457.  
  4458.   my $traces = ($ENV{AUTOCONF} || 'autoconf') . " ";
  4459.  
  4460.   # Use a separator unlikely to be used, not `:', the default, which
  4461.   # has a precise meaning for AC_CONFIG_FILES and so on.
  4462.   $traces .= join (' ',
  4463.            map { "--trace=$_" . ':\$f:\$l::\$n::\${::}%' }
  4464.            (keys %traced));
  4465.  
  4466.   my $tracefh = new Automake::XFile ("$traces $filename |");
  4467.   verb "reading $traces";
  4468.  
  4469.   while ($_ = $tracefh->getline)
  4470.     {
  4471.       chomp;
  4472.       my ($here, @args) = split /::/;
  4473.       my $where = new Automake::Location $here;
  4474.       my $macro = $args[0];
  4475.  
  4476.       prog_error ("unrequested trace `$macro'")
  4477.     unless exists $traced{$macro};
  4478.  
  4479.       # Skip and diagnose malformed calls.
  4480.       if ($#args < $traced{$macro})
  4481.     {
  4482.       msg ('syntax', $where, "not enough arguments for $macro");
  4483.       next;
  4484.     }
  4485.  
  4486.       # Alphabetical ordering please.
  4487.       if ($macro eq 'AC_CANONICAL_HOST')
  4488.     {
  4489.       if (! $seen_canonical)
  4490.         {
  4491.           $seen_canonical = AC_CANONICAL_HOST;
  4492.           $canonical_location = $where;
  4493.         }
  4494.     }
  4495.       elsif ($macro eq 'AC_CANONICAL_SYSTEM')
  4496.     {
  4497.       $seen_canonical = AC_CANONICAL_SYSTEM;
  4498.       $canonical_location = $where;
  4499.     }
  4500.       elsif ($macro eq 'AC_CONFIG_AUX_DIR')
  4501.     {
  4502.       @config_aux_path = $args[1];
  4503.       $config_aux_dir_set_in_configure_in = 1;
  4504.     }
  4505.       elsif ($macro eq 'AC_CONFIG_FILES')
  4506.     {
  4507.       # Look at potential Makefile.am's.
  4508.       scan_autoconf_config_files ($where, $args[1]);
  4509.     }
  4510.       elsif ($macro eq 'AC_CONFIG_HEADERS')
  4511.     {
  4512.       foreach my $spec (split (' ', $args[1]))
  4513.         {
  4514.           my ($dest, @src) = split (':', $spec);
  4515.           $ac_config_files_location{$dest} = $where;
  4516.           push @config_headers, $spec;
  4517.         }
  4518.     }
  4519.       elsif ($macro eq 'AC_CONFIG_LINKS')
  4520.     {
  4521.       foreach my $spec (split (' ', $args[1]))
  4522.         {
  4523.           my ($dest, $src) = split (':', $spec);
  4524.           $ac_config_files_location{$dest} = $where;
  4525.           push @config_links, $spec;
  4526.         }
  4527.     }
  4528.       elsif ($macro eq 'AC_INIT')
  4529.         {
  4530.       if (defined $args[2])
  4531.         {
  4532.           $package_version = $args[2];
  4533.           $package_version_location = $where;
  4534.         }
  4535.     }
  4536.       elsif ($macro eq 'AC_LIBSOURCE')
  4537.     {
  4538.       $libsources{$args[1]} = $here;
  4539.     }
  4540.       elsif ($macro eq 'AC_SUBST')
  4541.     {
  4542.       # Just check for alphanumeric in AC_SUBST.  If you do
  4543.       # AC_SUBST(5), then too bad.
  4544.       $configure_vars{$args[1]} = $where
  4545.         if $args[1] =~ /^\w+$/;
  4546.     }
  4547.       elsif ($macro eq 'AM_AUTOMAKE_VERSION')
  4548.         {
  4549.       error ($where,
  4550.          "version mismatch.  This is Automake $VERSION,\n" .
  4551.          "but the definition used by this AM_INIT_AUTOMAKE\n" .
  4552.          "comes from Automake $args[1].  You should recreate\n" .
  4553.          "aclocal.m4 with aclocal and run automake again.\n",
  4554.          # $? = 63 is used to indicate version mismatch to missing.
  4555.          exit_code => 63)
  4556.         if $VERSION ne $args[1];
  4557.  
  4558.       $seen_automake_version = 1;
  4559.         }
  4560.       elsif ($macro eq 'AM_CONDITIONAL')
  4561.     {
  4562.       $configure_cond{$args[1]} = $where;
  4563.      }
  4564.       elsif ($macro eq 'AM_ENABLE_MULTILIB')
  4565.     {
  4566.       $seen_multilib = $where;
  4567.     }
  4568.       elsif ($macro eq 'AM_GNU_GETTEXT')
  4569.     {
  4570.       $seen_gettext = $where;
  4571.       $ac_gettext_location = $where;
  4572.       $seen_gettext_external = grep ($_ eq 'external', @args);
  4573.     }
  4574.       elsif ($macro eq 'AM_INIT_AUTOMAKE')
  4575.     {
  4576.       $seen_init_automake = $where;
  4577.       if (defined $args[2])
  4578.         {
  4579.           $package_version = $args[2];
  4580.           $package_version_location = $where;
  4581.         }
  4582.       elsif (defined $args[1])
  4583.         {
  4584.           exit $exit_code
  4585.         if (process_global_option_list ($where,
  4586.                         split (' ', $args[1])));
  4587.         }
  4588.     }
  4589.       elsif ($macro eq 'AM_MAINTAINER_MODE')
  4590.     {
  4591.       $seen_maint_mode = $where;
  4592.     }
  4593.       elsif ($macro eq 'AM_PROG_CC_C_O')
  4594.     {
  4595.       $seen_cc_c_o = $where;
  4596.     }
  4597.       elsif ($macro eq 'm4_include'
  4598.          || $macro eq 'm4_sinclude'
  4599.          || $macro eq 'sinclude')
  4600.     {
  4601.       # Some modified versions of Autoconf don't use
  4602.       # forzen files.  Consequently it's possible that we see all
  4603.       # m4_include's performed during Autoconf's startup.
  4604.       # Obviously we don't want to distribute Autoconf's files
  4605.       # so we skip absolute filenames here.
  4606.       push @configure_deps, '$(top_srcdir)/' . $args[1]
  4607.         unless $here =~ m,^(?:\w:)?[\\/],;
  4608.       # Keep track of the greatest timestamp.
  4609.       if (-e $args[1])
  4610.         {
  4611.           my $mtime = mtime $args[1];
  4612.           $configure_deps_greatest_timestamp = $mtime
  4613.         if $mtime > $configure_deps_greatest_timestamp;
  4614.         }
  4615.     }
  4616.     }
  4617.  
  4618.   $tracefh->close;
  4619. }
  4620.  
  4621.  
  4622. # &scan_autoconf_files ()
  4623. # -----------------------
  4624. # Check whether we use `configure.ac' or `configure.in'.
  4625. # Scan it (and possibly `aclocal.m4') for interesting things.
  4626. # We must scan aclocal.m4 because there might be AC_SUBSTs and such there.
  4627. sub scan_autoconf_files ()
  4628. {
  4629.   # Reinitialize libsources here.  This isn't really necessary,
  4630.   # since we currently assume there is only one configure.ac.  But
  4631.   # that won't always be the case.
  4632.   %libsources = ();
  4633.  
  4634.   # Keep track of the youngest configure dependency.
  4635.   $configure_deps_greatest_timestamp = mtime $configure_ac;
  4636.   if (-e 'aclocal.m4')
  4637.     {
  4638.       my $mtime = mtime 'aclocal.m4';
  4639.       $configure_deps_greatest_timestamp = $mtime
  4640.     if $mtime > $configure_deps_greatest_timestamp;
  4641.     }
  4642.  
  4643.   scan_autoconf_traces ($configure_ac);
  4644.  
  4645.   @configure_input_files = sort keys %make_list;
  4646.   # Set input and output files if not specified by user.
  4647.   if (! @input_files)
  4648.     {
  4649.       @input_files = @configure_input_files;
  4650.       %output_files = %make_list;
  4651.     }
  4652.  
  4653.  
  4654.   if (! $seen_init_automake)
  4655.     {
  4656.       err_ac ("no proper invocation of AM_INIT_AUTOMAKE was found.\nYou "
  4657.           . "should verify that $configure_ac invokes AM_INIT_AUTOMAKE,"
  4658.           . "\nthat aclocal.m4 is present in the top-level directory,\n"
  4659.           . "and that aclocal.m4 was recently regenerated "
  4660.           . "(using aclocal).");
  4661.     }
  4662.   else
  4663.     {
  4664.       if (! $seen_automake_version)
  4665.     {
  4666.       if (-f 'aclocal.m4')
  4667.         {
  4668.           error ($seen_init_automake,
  4669.              "your implementation of AM_INIT_AUTOMAKE comes from " .
  4670.              "an\nold Automake version.  You should recreate " .
  4671.              "aclocal.m4\nwith aclocal and run automake again.\n",
  4672.              # $? = 63 is used to indicate version mismatch to missing.
  4673.              exit_code => 63);
  4674.         }
  4675.       else
  4676.         {
  4677.           error ($seen_init_automake,
  4678.              "no proper implementation of AM_INIT_AUTOMAKE was " .
  4679.              "found,\nprobably because aclocal.m4 is missing...\n" .
  4680.              "You should run aclocal to create this file, then\n" .
  4681.              "run automake again.\n");
  4682.         }
  4683.     }
  4684.     }
  4685.  
  4686.   # Look for some files we need.  Always check for these.  This
  4687.   # check must be done for every run, even those where we are only
  4688.   # looking at a subdir Makefile.  We must set relative_dir so that
  4689.   # the file-finding machinery works.
  4690.   # FIXME: Is this broken because it needs dynamic scopes.
  4691.   # My tests seems to show it's not the case.
  4692.   $relative_dir = '.';
  4693.   require_conf_file ($configure_ac, FOREIGN, 'install-sh', 'missing');
  4694.   err_am "`install.sh' is an anachronism; use `install-sh' instead"
  4695.     if -f $config_aux_path[0] . '/install.sh';
  4696.  
  4697.   # Preserve dist_common for later.
  4698.   $configure_dist_common = variable_value ('DIST_COMMON') || '';
  4699. }
  4700.  
  4701. ################################################################
  4702.  
  4703. # Set up for Cygnus mode.
  4704. sub check_cygnus
  4705. {
  4706.   my $cygnus = option 'cygnus';
  4707.   return unless $cygnus;
  4708.  
  4709.   set_strictness ('foreign');
  4710.   set_option ('no-installinfo', $cygnus);
  4711.   set_option ('no-dependencies', $cygnus);
  4712.   set_option ('no-dist', $cygnus);
  4713.  
  4714.   err_ac "`AM_MAINTAINER_MODE' required when --cygnus specified"
  4715.     if !$seen_maint_mode;
  4716. }
  4717.  
  4718. # Do any extra checking for GNU standards.
  4719. sub check_gnu_standards
  4720. {
  4721.   if ($relative_dir eq '.')
  4722.     {
  4723.       # In top level (or only) directory.
  4724.       require_file ("$am_file.am", GNU,
  4725.             qw/INSTALL NEWS README AUTHORS ChangeLog/);
  4726.  
  4727.       # Accept one of these three licenses; default to COPYING.
  4728.       # Make sure we do not overwrite an existing license.
  4729.       my $license;
  4730.       foreach (qw /COPYING COPYING.LIB COPYING.LESSER/)
  4731.     {
  4732.       if (-f $_)
  4733.         {
  4734.           $license = $_;
  4735.           last;
  4736.         }
  4737.     }
  4738.       require_file ("$am_file.am", GNU, 'COPYING')
  4739.     unless $license;
  4740.     }
  4741.  
  4742.   for my $opt ('no-installman', 'no-installinfo')
  4743.     {
  4744.       msg ('error-gnu', option $opt,
  4745.        "option `$opt' disallowed by GNU standards")
  4746.     if option $opt;
  4747.     }
  4748. }
  4749.  
  4750. # Do any extra checking for GNITS standards.
  4751. sub check_gnits_standards
  4752. {
  4753.   if ($relative_dir eq '.')
  4754.     {
  4755.       # In top level (or only) directory.
  4756.       require_file ("$am_file.am", GNITS, 'THANKS');
  4757.     }
  4758. }
  4759.  
  4760. ################################################################
  4761. #
  4762. # Functions to handle files of each language.
  4763.  
  4764. # Each `lang_X_rewrite($DIRECTORY, $BASE, $EXT)' function follows a
  4765. # simple formula: Return value is LANG_SUBDIR if the resulting object
  4766. # file should be in a subdir if the source file is, LANG_PROCESS if
  4767. # file is to be dealt with, LANG_IGNORE otherwise.
  4768.  
  4769. # Much of the actual processing is handled in
  4770. # handle_single_transform_list.  These functions exist so that
  4771. # auxiliary information can be recorded for a later cleanup pass.
  4772. # Note that the calls to these functions are computed, so don't bother
  4773. # searching for their precise names in the source.
  4774.  
  4775. # This is just a convenience function that can be used to determine
  4776. # when a subdir object should be used.
  4777. sub lang_sub_obj
  4778. {
  4779.     return option 'subdir-objects' ? LANG_SUBDIR : LANG_PROCESS;
  4780. }
  4781.  
  4782. # Rewrite a single C source file.
  4783. sub lang_c_rewrite
  4784. {
  4785.   my ($directory, $base, $ext) = @_;
  4786.  
  4787.   if (option 'ansi2knr' && $base =~ /_$/)
  4788.     {
  4789.       # FIXME: include line number in error.
  4790.       err_am "C source file `$base.c' would be deleted by ansi2knr rules";
  4791.     }
  4792.  
  4793.   my $r = LANG_PROCESS;
  4794.   if (option 'subdir-objects')
  4795.     {
  4796.       $r = LANG_SUBDIR;
  4797.       $base = $directory . '/' . $base
  4798.     unless $directory eq '.' || $directory eq '';
  4799.  
  4800.       err_am ("C objects in subdir but `AM_PROG_CC_C_O' "
  4801.           . "not in `$configure_ac'",
  4802.           uniq_scope => US_GLOBAL)
  4803.     unless $seen_cc_c_o;
  4804.  
  4805.       require_conf_file ("$am_file.am", FOREIGN, 'compile');
  4806.  
  4807.       # In this case we already have the directory information, so
  4808.       # don't add it again.
  4809.       $de_ansi_files{$base} = '';
  4810.     }
  4811.   else
  4812.     {
  4813.       $de_ansi_files{$base} = (($directory eq '.' || $directory eq '')
  4814.                    ? ''
  4815.                    : "$directory/");
  4816.     }
  4817.  
  4818.     return $r;
  4819. }
  4820.  
  4821. # Rewrite a single C++ source file.
  4822. sub lang_cxx_rewrite
  4823. {
  4824.     return &lang_sub_obj;
  4825. }
  4826.  
  4827. # Rewrite a single header file.
  4828. sub lang_header_rewrite
  4829. {
  4830.     # Header files are simply ignored.
  4831.     return LANG_IGNORE;
  4832. }
  4833.  
  4834. # Rewrite a single yacc file.
  4835. sub lang_yacc_rewrite
  4836. {
  4837.     my ($directory, $base, $ext) = @_;
  4838.  
  4839.     my $r = &lang_sub_obj;
  4840.     (my $newext = $ext) =~ tr/y/c/;
  4841.     return ($r, $newext);
  4842. }
  4843.  
  4844. # Rewrite a single yacc++ file.
  4845. sub lang_yaccxx_rewrite
  4846. {
  4847.     my ($directory, $base, $ext) = @_;
  4848.  
  4849.     my $r = &lang_sub_obj;
  4850.     (my $newext = $ext) =~ tr/y/c/;
  4851.     return ($r, $newext);
  4852. }
  4853.  
  4854. # Rewrite a single lex file.
  4855. sub lang_lex_rewrite
  4856. {
  4857.     my ($directory, $base, $ext) = @_;
  4858.  
  4859.     my $r = &lang_sub_obj;
  4860.     (my $newext = $ext) =~ tr/l/c/;
  4861.     return ($r, $newext);
  4862. }
  4863.  
  4864. # Rewrite a single lex++ file.
  4865. sub lang_lexxx_rewrite
  4866. {
  4867.     my ($directory, $base, $ext) = @_;
  4868.  
  4869.     my $r = &lang_sub_obj;
  4870.     (my $newext = $ext) =~ tr/l/c/;
  4871.     return ($r, $newext);
  4872. }
  4873.  
  4874. # Rewrite a single assembly file.
  4875. sub lang_asm_rewrite
  4876. {
  4877.     return &lang_sub_obj;
  4878. }
  4879.  
  4880. # Rewrite a single Fortran 77 file.
  4881. sub lang_f77_rewrite
  4882. {
  4883.     return LANG_PROCESS;
  4884. }
  4885.  
  4886. # Rewrite a single preprocessed Fortran 77 file.
  4887. sub lang_ppf77_rewrite
  4888. {
  4889.     return LANG_PROCESS;
  4890. }
  4891.  
  4892. # Rewrite a single ratfor file.
  4893. sub lang_ratfor_rewrite
  4894. {
  4895.     return LANG_PROCESS;
  4896. }
  4897.  
  4898. # Rewrite a single Objective C file.
  4899. sub lang_objc_rewrite
  4900. {
  4901.     return &lang_sub_obj;
  4902. }
  4903.  
  4904. # Rewrite a single Java file.
  4905. sub lang_java_rewrite
  4906. {
  4907.     return LANG_SUBDIR;
  4908. }
  4909.  
  4910. # The lang_X_finish functions are called after all source file
  4911. # processing is done.  Each should handle defining rules for the
  4912. # language, etc.  A finish function is only called if a source file of
  4913. # the appropriate type has been seen.
  4914.  
  4915. sub lang_c_finish
  4916. {
  4917.     # Push all libobjs files onto de_ansi_files.  We actually only
  4918.     # push files which exist in the current directory, and which are
  4919.     # genuine source files.
  4920.     foreach my $file (keys %libsources)
  4921.     {
  4922.     if ($file =~ /^(.*)\.[cly]$/ && -f "$relative_dir/$file")
  4923.     {
  4924.         $de_ansi_files{$1} = ''
  4925.     }
  4926.     }
  4927.  
  4928.     if (option 'ansi2knr' && keys %de_ansi_files)
  4929.     {
  4930.      # Make all _.c files depend on their corresponding .c files.
  4931.      my @objects;
  4932.      foreach my $base (sort keys %de_ansi_files)
  4933.      {
  4934.         # Each _.c file must depend on ansi2knr; otherwise it
  4935.         # might be used in a parallel build before it is built.
  4936.         # We need to support files in the srcdir and in the build
  4937.         # dir (because these files might be auto-generated.  But
  4938.         # we can't use $< -- some makes only define $< during a
  4939.         # suffix rule.
  4940.         my $ansfile = $de_ansi_files{$base} . $base . '.c';
  4941.          $output_rules .= ($base . "_.c: $ansfile \$(ANSI2KNR)\n\t"
  4942.                   . '$(CPP) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) '
  4943.                   . '`if test -f $(srcdir)/' . $ansfile
  4944.                   . '; then echo $(srcdir)/' . $ansfile
  4945.                   . '; else echo ' . $ansfile . '; fi` '
  4946.                   . "| sed 's/^# \\([0-9]\\)/#line \\1/' "
  4947.                   . '| $(ANSI2KNR) > $@'
  4948.                   # If ansi2knr fails then we shouldn't
  4949.                   # create the _.c file
  4950.                   . " || rm -f \$\@\n");
  4951.          push (@objects, $base . '_.$(OBJEXT)');
  4952.          push (@objects, $base . '_.lo')
  4953.           if var ('LIBTOOL');
  4954.      }
  4955.  
  4956.      # Make all _.o (and _.lo) files depend on ansi2knr.
  4957.      # Use a sneaky little hack to make it print nicely.
  4958.      &pretty_print_rule ('', '', @objects, ':', '$(ANSI2KNR)');
  4959.     }
  4960. }
  4961.  
  4962. # This is a yacc helper which is called whenever we have decided to
  4963. # compile a yacc file.
  4964. sub lang_yacc_target_hook
  4965. {
  4966.     my ($self, $aggregate, $output, $input) = @_;
  4967.  
  4968.     my $flag = $aggregate . "_YFLAGS";
  4969.     my $flagvar = var $flag;
  4970.     my $YFLAGSvar = var 'YFLAGS';
  4971.     if (($flagvar && $flagvar->variable_value =~ /$DASH_D_PATTERN/o)
  4972.     || ($YFLAGSvar && $YFLAGSvar->variable_value =~ /$DASH_D_PATTERN/o))
  4973.     {
  4974.     (my $output_base = $output) =~ s/$KNOWN_EXTENSIONS_PATTERN$//;
  4975.     my $header = $output_base . '.h';
  4976.  
  4977.     # Found a `-d' that applies to the compilation of this file.
  4978.     # Add a dependency for the generated header file, and arrange
  4979.     # for that file to be included in the distribution.
  4980.     # FIXME: this fails for `nodist_*_SOURCES'.
  4981.     foreach my $cond (Automake::Rule::define (${header}, 'internal',
  4982.                           RULE_AUTOMAKE, TRUE,
  4983.                           INTERNAL))
  4984.       {
  4985.         my $condstr = $cond->subst_string;
  4986.         $output_rules .= ("$condstr${header}: $output\n"
  4987.                   # Recover from removal of $header
  4988.                   . "$condstr\t\@if test ! -f \$@; then \\\n"
  4989.                   . "$condstr\t  rm -f $output; \\\n"
  4990.                   . "$condstr\t  \$(MAKE) $output; \\\n"
  4991.                   . "$condstr\telse :; fi\n");
  4992.       }
  4993.     &push_dist_common ($header);
  4994.  
  4995.     # If the files are built in the build directory, then we want
  4996.     # to remove them with `make clean'.  If they are in srcdir
  4997.     # they shouldn't be touched.  However, we can't determine this
  4998.     # statically, and the GNU rules say that yacc/lex output files
  4999.     # should be removed by maintainer-clean.  So that's what we
  5000.     # do.
  5001.     $clean_files{$header} = MAINTAINER_CLEAN;
  5002.     }
  5003.     # Erase $OUTPUT on `make maintainer-clean' (by GNU standards).
  5004.     # See the comment above for $HEADER.
  5005.     $clean_files{$output} = MAINTAINER_CLEAN;
  5006. }
  5007.  
  5008. # This is a lex helper which is called whenever we have decided to
  5009. # compile a lex file.
  5010. sub lang_lex_target_hook
  5011. {
  5012.     my ($self, $aggregate, $output, $input) = @_;
  5013.     # If the files are built in the build directory, then we want to
  5014.     # remove them with `make clean'.  If they are in srcdir they
  5015.     # shouldn't be touched.  However, we can't determine this
  5016.     # statically, and the GNU rules say that yacc/lex output files
  5017.     # should be removed by maintainer-clean.  So that's what we do.
  5018.     $clean_files{$output} = MAINTAINER_CLEAN;
  5019. }
  5020.  
  5021. # This is a helper for both lex and yacc.
  5022. sub yacc_lex_finish_helper
  5023. {
  5024.     return if defined $language_scratch{'lex-yacc-done'};
  5025.     $language_scratch{'lex-yacc-done'} = 1;
  5026.  
  5027.     # If there is more than one distinct yacc (resp lex) source file
  5028.     # in a given directory, then the `ylwrap' program is required to
  5029.     # allow parallel builds to work correctly.  FIXME: for now, no
  5030.     # line number.
  5031.     require_conf_file ($configure_ac, FOREIGN, 'ylwrap');
  5032.     if ($config_aux_dir_set_in_configure_in)
  5033.     {
  5034.     &define_variable ('YLWRAP', $config_aux_dir . "/ylwrap", INTERNAL);
  5035.     }
  5036.     else
  5037.     {
  5038.     &define_variable ('YLWRAP', '$(top_srcdir)/ylwrap', INTERNAL);
  5039.     }
  5040. }
  5041.  
  5042. sub lang_yacc_finish
  5043. {
  5044.   return if defined $language_scratch{'yacc-done'};
  5045.   $language_scratch{'yacc-done'} = 1;
  5046.  
  5047.   reject_var 'YACCFLAGS', "`YACCFLAGS' obsolete; use `YFLAGS' instead";
  5048.  
  5049.   &yacc_lex_finish_helper
  5050.     if count_files_for_language ('yacc') > 1;
  5051. }
  5052.  
  5053.  
  5054. sub lang_lex_finish
  5055. {
  5056.   return if defined $language_scratch{'lex-done'};
  5057.   $language_scratch{'lex-done'} = 1;
  5058.  
  5059.   &yacc_lex_finish_helper
  5060.     if count_files_for_language ('lex') > 1;
  5061. }
  5062.  
  5063.  
  5064. # Given a hash table of linker names, pick the name that has the most
  5065. # precedence.  This is lame, but something has to have global
  5066. # knowledge in order to eliminate the conflict.  Add more linkers as
  5067. # required.
  5068. sub resolve_linker
  5069. {
  5070.     my (%linkers) = @_;
  5071.  
  5072.     foreach my $l (qw(GCJLINK CXXLINK F77LINK OBJCLINK))
  5073.     {
  5074.     return $l if defined $linkers{$l};
  5075.     }
  5076.     return 'LINK';
  5077. }
  5078.  
  5079. # Called to indicate that an extension was used.
  5080. sub saw_extension
  5081. {
  5082.     my ($ext) = @_;
  5083.     if (! defined $extension_seen{$ext})
  5084.     {
  5085.     $extension_seen{$ext} = 1;
  5086.     }
  5087.     else
  5088.     {
  5089.     ++$extension_seen{$ext};
  5090.     }
  5091. }
  5092.  
  5093. # Return the number of files seen for a given language.  Knows about
  5094. # special cases we care about.  FIXME: this is hideous.  We need
  5095. # something that involves real language objects.  For instance yacc
  5096. # and yaccxx could both derive from a common yacc class which would
  5097. # know about the strange ylwrap requirement.  (Or better yet we could
  5098. # just not support legacy yacc!)
  5099. sub count_files_for_language
  5100. {
  5101.     my ($name) = @_;
  5102.  
  5103.     my @names;
  5104.     if ($name eq 'yacc' || $name eq 'yaccxx')
  5105.     {
  5106.     @names = ('yacc', 'yaccxx');
  5107.     }
  5108.     elsif ($name eq 'lex' || $name eq 'lexxx')
  5109.     {
  5110.     @names = ('lex', 'lexxx');
  5111.     }
  5112.     else
  5113.     {
  5114.     @names = ($name);
  5115.     }
  5116.  
  5117.     my $r = 0;
  5118.     foreach $name (@names)
  5119.     {
  5120.     my $lang = $languages{$name};
  5121.     foreach my $ext (@{$lang->extensions})
  5122.     {
  5123.         $r += $extension_seen{$ext}
  5124.             if defined $extension_seen{$ext};
  5125.     }
  5126.     }
  5127.  
  5128.     return $r
  5129. }
  5130.  
  5131. # Called to ask whether source files have been seen . If HEADERS is 1,
  5132. # headers can be included.
  5133. sub saw_sources_p
  5134. {
  5135.     my ($headers) = @_;
  5136.  
  5137.     # count all the sources
  5138.     my $count = 0;
  5139.     foreach my $val (values %extension_seen)
  5140.     {
  5141.     $count += $val;
  5142.     }
  5143.  
  5144.     if (!$headers)
  5145.     {
  5146.     $count -= count_files_for_language ('header');
  5147.     }
  5148.  
  5149.     return $count > 0;
  5150. }
  5151.  
  5152.  
  5153. # register_language (%ATTRIBUTE)
  5154. # ------------------------------
  5155. # Register a single language.
  5156. # Each %ATTRIBUTE is of the form ATTRIBUTE => VALUE.
  5157. sub register_language (%)
  5158. {
  5159.   my (%option) = @_;
  5160.  
  5161.   # Set the defaults.
  5162.   $option{'ansi'} = 0
  5163.     unless defined $option{'ansi'};
  5164.   $option{'autodep'} = 'no'
  5165.     unless defined $option{'autodep'};
  5166.   $option{'linker'} = ''
  5167.     unless defined $option{'linker'};
  5168.   $option{'flags'} = []
  5169.     unless defined $option{'flags'};
  5170.   $option{'output_extensions'} = sub { return ( '.$(OBJEXT)', '.lo' ) }
  5171.     unless defined $option{'output_extensions'};
  5172.  
  5173.   my $lang = new Language (%option);
  5174.  
  5175.   # Fill indexes.
  5176.   $extension_map{$_} = $lang->name foreach @{$lang->extensions};
  5177.   $languages{$lang->name} = $lang;
  5178.  
  5179.   # Update the pattern of known extensions.
  5180.   accept_extensions (@{$lang->extensions});
  5181.  
  5182.   # Upate the $suffix_rule map.
  5183.   foreach my $suffix (@{$lang->extensions})
  5184.     {
  5185.       foreach my $dest (&{$lang->output_extensions} ($suffix))
  5186.     {
  5187.       register_suffix_rule (INTERNAL, $suffix, $dest);
  5188.     }
  5189.     }
  5190. }
  5191.  
  5192. # derive_suffix ($EXT, $OBJ)
  5193. # --------------------------
  5194. # This function is used to find a path from a user-specified suffix $EXT
  5195. # to $OBJ or to some other suffix we recognize internally, e.g. `cc'.
  5196. sub derive_suffix ($$)
  5197. {
  5198.   my ($source_ext, $obj) = @_;
  5199.  
  5200.   while (! $extension_map{$source_ext}
  5201.      && $source_ext ne $obj
  5202.      && exists $suffix_rules->{$source_ext}
  5203.      && exists $suffix_rules->{$source_ext}{$obj})
  5204.     {
  5205.       $source_ext = $suffix_rules->{$source_ext}{$obj}[0];
  5206.     }
  5207.  
  5208.   return $source_ext;
  5209. }
  5210.  
  5211.  
  5212. ################################################################
  5213.  
  5214. # Pretty-print something and append to output_rules.
  5215. sub pretty_print_rule
  5216. {
  5217.     $output_rules .= &makefile_wrap (@_);
  5218. }
  5219.  
  5220.  
  5221. ################################################################
  5222.  
  5223.  
  5224. ## -------------------------------- ##
  5225. ## Handling the conditional stack.  ##
  5226. ## -------------------------------- ##
  5227.  
  5228.  
  5229. # $STRING
  5230. # make_conditional_string ($NEGATE, $COND)
  5231. # ----------------------------------------
  5232. sub make_conditional_string ($$)
  5233. {
  5234.   my ($negate, $cond) = @_;
  5235.   $cond = "${cond}_TRUE"
  5236.     unless $cond =~ /^TRUE|FALSE$/;
  5237.   $cond = Automake::Condition::conditional_negate ($cond)
  5238.     if $negate;
  5239.   return $cond;
  5240. }
  5241.  
  5242.  
  5243. # $COND
  5244. # cond_stack_if ($NEGATE, $COND, $WHERE)
  5245. # --------------------------------------
  5246. sub cond_stack_if ($$$)
  5247. {
  5248.   my ($negate, $cond, $where) = @_;
  5249.  
  5250.   error $where, "$cond does not appear in AM_CONDITIONAL"
  5251.     if ! $configure_cond{$cond} && $cond !~ /^TRUE|FALSE$/;
  5252.  
  5253.   push (@cond_stack, make_conditional_string ($negate, $cond));
  5254.  
  5255.   return new Automake::Condition (@cond_stack);
  5256. }
  5257.  
  5258.  
  5259. # $COND
  5260. # cond_stack_else ($NEGATE, $COND, $WHERE)
  5261. # ----------------------------------------
  5262. sub cond_stack_else ($$$)
  5263. {
  5264.   my ($negate, $cond, $where) = @_;
  5265.  
  5266.   if (! @cond_stack)
  5267.     {
  5268.       error $where, "else without if";
  5269.       return FALSE;
  5270.     }
  5271.  
  5272.   $cond_stack[$#cond_stack] =
  5273.     Automake::Condition::conditional_negate ($cond_stack[$#cond_stack]);
  5274.  
  5275.   # If $COND is given, check against it.
  5276.   if (defined $cond)
  5277.     {
  5278.       $cond = make_conditional_string ($negate, $cond);
  5279.  
  5280.       error ($where, "else reminder ($negate$cond) incompatible with "
  5281.          . "current conditional: $cond_stack[$#cond_stack]")
  5282.     if $cond_stack[$#cond_stack] ne $cond;
  5283.     }
  5284.  
  5285.   return new Automake::Condition (@cond_stack);
  5286. }
  5287.  
  5288.  
  5289. # $COND
  5290. # cond_stack_endif ($NEGATE, $COND, $WHERE)
  5291. # -----------------------------------------
  5292. sub cond_stack_endif ($$$)
  5293. {
  5294.   my ($negate, $cond, $where) = @_;
  5295.   my $old_cond;
  5296.  
  5297.   if (! @cond_stack)
  5298.     {
  5299.       error $where, "endif without if";
  5300.       return TRUE;
  5301.     }
  5302.  
  5303.   # If $COND is given, check against it.
  5304.   if (defined $cond)
  5305.     {
  5306.       $cond = make_conditional_string ($negate, $cond);
  5307.  
  5308.       error ($where, "endif reminder ($negate$cond) incompatible with "
  5309.          . "current conditional: $cond_stack[$#cond_stack]")
  5310.     if $cond_stack[$#cond_stack] ne $cond;
  5311.     }
  5312.  
  5313.   pop @cond_stack;
  5314.  
  5315.   return new Automake::Condition (@cond_stack);
  5316. }
  5317.  
  5318.  
  5319.  
  5320.  
  5321.  
  5322. ## ------------------------ ##
  5323. ## Handling the variables.  ##
  5324. ## ------------------------ ##
  5325.  
  5326.  
  5327. # &define_pretty_variable ($VAR, $COND, $WHERE, @VALUE)
  5328. # -----------------------------------------------------
  5329. # Like define_variable, but the value is a list, and the variable may
  5330. # be defined conditionally.  The second argument is the Condition
  5331. # under which the value should be defined; this should be the empty
  5332. # string to define the variable unconditionally.  The third argument
  5333. # is a list holding the values to use for the variable.  The value is
  5334. # pretty printed in the output file.
  5335. sub define_pretty_variable ($$$@)
  5336. {
  5337.     my ($var, $cond, $where, @value) = @_;
  5338.  
  5339.     if (! vardef ($var, $cond))
  5340.     {
  5341.         Automake::Variable::define ($var, VAR_AUTOMAKE, '', $cond, "@value",
  5342.                     '', $where, VAR_PRETTY);
  5343.     rvar ($var)->rdef ($cond)->set_seen;
  5344.     }
  5345. }
  5346.  
  5347.  
  5348. # define_variable ($VAR, $VALUE, $WHERE)
  5349. # --------------------------------------
  5350. # Define a new user variable VAR to VALUE, but only if not already defined.
  5351. sub define_variable ($$$)
  5352. {
  5353.     my ($var, $value, $where) = @_;
  5354.     define_pretty_variable ($var, TRUE, $where, $value);
  5355. }
  5356.  
  5357.  
  5358. # define_files_variable ($VAR, \@BASENAME, $EXTENSION, $WHERE)
  5359. # -----------------------------------------------------------
  5360. # Define the $VAR which content is the list of file names composed of
  5361. # a @BASENAME and the $EXTENSION.
  5362. sub define_files_variable ($\@$$)
  5363. {
  5364.   my ($var, $basename, $extension, $where) = @_;
  5365.   define_variable ($var,
  5366.            join (' ', map { "$_.$extension" } @$basename),
  5367.            $where);
  5368. }
  5369.  
  5370.  
  5371. # Like define_variable, but define a variable to be the configure
  5372. # substitution by the same name.
  5373. sub define_configure_variable ($)
  5374. {
  5375.   my ($var) = @_;
  5376.  
  5377.   my $pretty = VAR_ASIS;
  5378.   my $owner = VAR_CONFIGURE;
  5379.  
  5380.   # Do not output the ANSI2KNR configure variable -- we AC_SUBST
  5381.   # it in protos.m4, but later redefine it elsewhere.  This is
  5382.   # pretty hacky.  We also don't output AMDEPBACKSLASH: it might
  5383.   # be subst'd by `\', which certainly would not be appreciated by
  5384.   # Make.
  5385.   if ($var eq 'ANSI2KNR' || $var eq 'AMDEPBACKSLASH')
  5386.     {
  5387.       $pretty = VAR_SILENT;
  5388.       $owner = VAR_AUTOMAKE;
  5389.     }
  5390.  
  5391.   Automake::Variable::define ($var, $owner, '', TRUE, subst $var,
  5392.                   '', $configure_vars{$var}, $pretty);
  5393. }
  5394.  
  5395.  
  5396. # define_compiler_variable ($LANG)
  5397. # --------------------------------
  5398. # Define a compiler variable.  We also handle defining the `LT'
  5399. # version of the command when using libtool.
  5400. sub define_compiler_variable ($)
  5401. {
  5402.     my ($lang) = @_;
  5403.  
  5404.     my ($var, $value) = ($lang->compiler, $lang->compile);
  5405.     &define_variable ($var, $value, INTERNAL);
  5406.     &define_variable ("LT$var", "\$(LIBTOOL) --mode=compile $value", INTERNAL)
  5407.       if var ('LIBTOOL');
  5408. }
  5409.  
  5410.  
  5411. # define_linker_variable ($LANG)
  5412. # ------------------------------
  5413. # Define linker variables.
  5414. sub define_linker_variable ($)
  5415. {
  5416.     my ($lang) = @_;
  5417.  
  5418.     my ($var, $value) = ($lang->lder, $lang->ld);
  5419.     # CCLD = $(CC).
  5420.     &define_variable ($lang->lder, $lang->ld, INTERNAL);
  5421.     # CCLINK = $(CCLD) blah blah...
  5422.     &define_variable ($lang->linker,
  5423.               ((var ('LIBTOOL') ? '$(LIBTOOL) --mode=link ' : '')
  5424.                . $lang->link),
  5425.               INTERNAL);
  5426. }
  5427.  
  5428. ################################################################
  5429.  
  5430. # &check_trailing_slash ($WHERE, $LINE)
  5431. # --------------------------------------
  5432. # Return 1 iff $LINE ends with a slash.
  5433. # Might modify $LINE.
  5434. sub check_trailing_slash ($\$)
  5435. {
  5436.   my ($where, $line) = @_;
  5437.  
  5438.   # Ignore `##' lines.
  5439.   return 0 if $$line =~ /$IGNORE_PATTERN/o;
  5440.  
  5441.   # Catch and fix a common error.
  5442.   msg "syntax", $where, "whitespace following trailing backslash"
  5443.     if $$line =~ s/\\\s+\n$/\\\n/;
  5444.  
  5445.   return $$line =~ /\\$/;
  5446. }
  5447.  
  5448.  
  5449. # &read_am_file ($AMFILE, $WHERE)
  5450. # -------------------------------
  5451. # Read Makefile.am and set up %contents.  Simultaneously copy lines
  5452. # from Makefile.am into $output_trailer, or define variables as
  5453. # appropriate.  NOTE we put rules in the trailer section.  We want
  5454. # user rules to come after our generated stuff.
  5455. sub read_am_file ($$)
  5456. {
  5457.     my ($amfile, $where) = @_;
  5458.  
  5459.     my $am_file = new Automake::XFile ("< $amfile");
  5460.     verb "reading $amfile";
  5461.  
  5462.     # Keep track of the youngest output dependency.
  5463.     my $mtime = mtime $amfile;
  5464.     $output_deps_greatest_timestamp = $mtime
  5465.       if $mtime > $output_deps_greatest_timestamp;
  5466.  
  5467.     my $spacing = '';
  5468.     my $comment = '';
  5469.     my $blank = 0;
  5470.     my $saw_bk = 0;
  5471.  
  5472.     use constant IN_VAR_DEF => 0;
  5473.     use constant IN_RULE_DEF => 1;
  5474.     use constant IN_COMMENT => 2;
  5475.     my $prev_state = IN_RULE_DEF;
  5476.  
  5477.     while ($_ = $am_file->getline)
  5478.     {
  5479.         $where->set ("$amfile:$.");
  5480.     if (/$IGNORE_PATTERN/o)
  5481.     {
  5482.         # Merely delete comments beginning with two hashes.
  5483.     }
  5484.     elsif (/$WHITE_PATTERN/o)
  5485.     {
  5486.         error $where, "blank line following trailing backslash"
  5487.           if $saw_bk;
  5488.         # Stick a single white line before the incoming macro or rule.
  5489.         $spacing = "\n";
  5490.         $blank = 1;
  5491.         # Flush all comments seen so far.
  5492.         if ($comment ne '')
  5493.         {
  5494.         $output_vars .= $comment;
  5495.         $comment = '';
  5496.         }
  5497.     }
  5498.     elsif (/$COMMENT_PATTERN/o)
  5499.     {
  5500.         # Stick comments before the incoming macro or rule.  Make
  5501.         # sure a blank line precedes the first block of comments.
  5502.         $spacing = "\n" unless $blank;
  5503.         $blank = 1;
  5504.         $comment .= $spacing . $_;
  5505.         $spacing = '';
  5506.         $prev_state = IN_COMMENT;
  5507.     }
  5508.     else
  5509.     {
  5510.         last;
  5511.     }
  5512.     $saw_bk = check_trailing_slash ($where, $_);
  5513.     }
  5514.  
  5515.     # We save the conditional stack on entry, and then check to make
  5516.     # sure it is the same on exit.  This lets us conditionally include
  5517.     # other files.
  5518.     my @saved_cond_stack = @cond_stack;
  5519.     my $cond = new Automake::Condition (@cond_stack);
  5520.  
  5521.     my $last_var_name = '';
  5522.     my $last_var_type = '';
  5523.     my $last_var_value = '';
  5524.     my $last_where;
  5525.     # FIXME: shouldn't use $_ in this loop; it is too big.
  5526.     while ($_)
  5527.     {
  5528.         $where->set ("$amfile:$.");
  5529.  
  5530.     # Make sure the line is \n-terminated.
  5531.     chomp;
  5532.     $_ .= "\n";
  5533.  
  5534.     # Don't look at MAINTAINER_MODE_TRUE here.  That shouldn't be
  5535.     # used by users.  @MAINT@ is an anachronism now.
  5536.     $_ =~ s/\@MAINT\@//g
  5537.         unless $seen_maint_mode;
  5538.  
  5539.     my $new_saw_bk = check_trailing_slash ($where, $_);
  5540.  
  5541.     if (/$IGNORE_PATTERN/o)
  5542.     {
  5543.         # Merely delete comments beginning with two hashes.
  5544.     }
  5545.     elsif (/$WHITE_PATTERN/o)
  5546.     {
  5547.         # Stick a single white line before the incoming macro or rule.
  5548.         $spacing = "\n";
  5549.         error $where, "blank line following trailing backslash"
  5550.           if $saw_bk;
  5551.     }
  5552.     elsif (/$COMMENT_PATTERN/o)
  5553.     {
  5554.         # Stick comments before the incoming macro or rule.
  5555.         $comment .= $spacing . $_;
  5556.         $spacing = '';
  5557.         error $where, "comment following trailing backslash"
  5558.           if $saw_bk && $comment eq '';
  5559.         $prev_state = IN_COMMENT;
  5560.     }
  5561.     elsif ($saw_bk)
  5562.     {
  5563.         if ($prev_state == IN_RULE_DEF)
  5564.         {
  5565.           my $cond = new Automake::Condition @cond_stack;
  5566.           $output_trailer .= $cond->subst_string;
  5567.           $output_trailer .= $_;
  5568.         }
  5569.         elsif ($prev_state == IN_COMMENT)
  5570.         {
  5571.         # If the line doesn't start with a `#', add it.
  5572.         # We do this because a continued comment like
  5573.         #   # A = foo \
  5574.         #         bar \
  5575.         #         baz
  5576.         # is not portable.  BSD make doesn't honor
  5577.         # escaped newlines in comments.
  5578.         s/^#?/#/;
  5579.         $comment .= $spacing . $_;
  5580.         }
  5581.         else # $prev_state == IN_VAR_DEF
  5582.         {
  5583.           $last_var_value .= ' '
  5584.         unless $last_var_value =~ /\s$/;
  5585.           $last_var_value .= $_;
  5586.  
  5587.           if (!/\\$/)
  5588.         {
  5589.           Automake::Variable::define ($last_var_name, VAR_MAKEFILE,
  5590.                           $last_var_type, $cond,
  5591.                           $last_var_value, $comment,
  5592.                           $last_where, VAR_ASIS)
  5593.             if $cond != FALSE;
  5594.           $comment = $spacing = '';
  5595.         }
  5596.         }
  5597.     }
  5598.  
  5599.     elsif (/$IF_PATTERN/o)
  5600.       {
  5601.         $cond = cond_stack_if ($1, $2, $where);
  5602.       }
  5603.     elsif (/$ELSE_PATTERN/o)
  5604.       {
  5605.         $cond = cond_stack_else ($1, $2, $where);
  5606.       }
  5607.     elsif (/$ENDIF_PATTERN/o)
  5608.       {
  5609.         $cond = cond_stack_endif ($1, $2, $where);
  5610.       }
  5611.  
  5612.     elsif (/$RULE_PATTERN/o)
  5613.     {
  5614.         # Found a rule.
  5615.         $prev_state = IN_RULE_DEF;
  5616.  
  5617.         # For now we have to output all definitions of user rules
  5618.         # and can't diagnose duplicates (see the comment in
  5619.         # rule_define). So we go on and ignore the return value.
  5620.         Automake::Rule::define ($1, $amfile, RULE_USER, $cond, $where);
  5621.  
  5622.         check_variable_expansions ($_, $where);
  5623.  
  5624.         $output_trailer .= $comment . $spacing;
  5625.         my $cond = new Automake::Condition @cond_stack;
  5626.         $output_trailer .= $cond->subst_string;
  5627.             $output_trailer .= $_;
  5628.         $comment = $spacing = '';
  5629.     }
  5630.     elsif (/$ASSIGNMENT_PATTERN/o)
  5631.     {
  5632.         # Found a macro definition.
  5633.         $prev_state = IN_VAR_DEF;
  5634.         $last_var_name = $1;
  5635.         $last_var_type = $2;
  5636.         $last_var_value = $3;
  5637.         $last_where = $where->clone;
  5638.         if ($3 ne '' && substr ($3, -1) eq "\\")
  5639.         {
  5640.         # We preserve the `\' because otherwise the long lines
  5641.         # that are generated will be truncated by broken
  5642.         # `sed's.
  5643.         $last_var_value = $3 . "\n";
  5644.         }
  5645.  
  5646.         if (!/\\$/)
  5647.           {
  5648.         Automake::Variable::define ($last_var_name, VAR_MAKEFILE,
  5649.                         $last_var_type, $cond,
  5650.                         $last_var_value, $comment,
  5651.                         $last_where, VAR_ASIS)
  5652.           if $cond != FALSE;
  5653.         $comment = $spacing = '';
  5654.           }
  5655.     }
  5656.         elsif (/$INCLUDE_PATTERN/o)
  5657.         {
  5658.             my $path = $1;
  5659.  
  5660.             if ($path =~ s/^\$\(top_srcdir\)\///)
  5661.           {
  5662.                 push (@include_stack, "\$\(top_srcdir\)/$path");
  5663.         # Distribute any included file.
  5664.  
  5665.         # Always use the $(top_srcdir) prefix in DIST_COMMON,
  5666.         # otherwise OSF make will implicitly copy the included
  5667.         # file in the build tree during `make distdir' to satisfy
  5668.         # the dependency.
  5669.         # (subdircond2.test and subdircond3.test will fail.)
  5670.         push_dist_common ("\$\(top_srcdir\)/$path");
  5671.           }
  5672.             else
  5673.           {
  5674.                 $path =~ s/\$\(srcdir\)\///;
  5675.                 push (@include_stack, "\$\(srcdir\)/$path");
  5676.         # Always use the $(srcdir) prefix in DIST_COMMON,
  5677.         # otherwise OSF make will implicitly copy the included
  5678.         # file in the build tree during `make distdir' to satisfy
  5679.         # the dependency.
  5680.         # (subdircond2.test and subdircond3.test will fail.)
  5681.         push_dist_common ("\$\(srcdir\)/$path");
  5682.         $path = $relative_dir . "/" . $path if $relative_dir ne '.';
  5683.           }
  5684.         $where->push_context ("`$path' included from here");
  5685.             &read_am_file ($path, $where);
  5686.         $where->pop_context;
  5687.         }
  5688.     else
  5689.         {
  5690.         # This isn't an error; it is probably a continued rule.
  5691.         # In fact, this is what we assume.
  5692.         $prev_state = IN_RULE_DEF;
  5693.         check_variable_expansions ($_, $where);
  5694.         $output_trailer .= $comment . $spacing;
  5695.         my $cond = new Automake::Condition @cond_stack;
  5696.         $output_trailer .= $cond->subst_string;
  5697.         $output_trailer .= $_;
  5698.         $comment = $spacing = '';
  5699.         error $where, "`#' comment at start of rule is unportable"
  5700.           if $_ =~ /^\t\s*\#/;
  5701.     }
  5702.  
  5703.     $saw_bk = $new_saw_bk;
  5704.         $_ = $am_file->getline;
  5705.     }
  5706.  
  5707.     $output_trailer .= $comment;
  5708.  
  5709.     error ($where, "trailing backslash on last line")
  5710.       if $saw_bk;
  5711.  
  5712.     error ($where, (@cond_stack ? "unterminated conditionals: @cond_stack"
  5713.             : "too many conditionals closed in include file"))
  5714.       if "@saved_cond_stack" ne "@cond_stack";
  5715. }
  5716.  
  5717.  
  5718. # define_standard_variables ()
  5719. # ----------------------------
  5720. # A helper for read_main_am_file which initializes configure variables
  5721. # and variables from header-vars.am.
  5722. sub define_standard_variables
  5723. {
  5724.   my $saved_output_vars = $output_vars;
  5725.   my ($comments, undef, $rules) =
  5726.     file_contents_internal (1, "$libdir/am/header-vars.am",
  5727.                 new Automake::Location);
  5728.  
  5729.   foreach my $var (sort keys %configure_vars)
  5730.     {
  5731.       &define_configure_variable ($var);
  5732.     }
  5733.  
  5734.   $output_vars .= $comments . $rules;
  5735. }
  5736.  
  5737. # Read main am file.
  5738. sub read_main_am_file
  5739. {
  5740.     my ($amfile) = @_;
  5741.  
  5742.     # This supports the strange variable tricks we are about to play.
  5743.     prog_error (macros_dump () . "variable defined before read_main_am_file")
  5744.       if (scalar (variables) > 0);
  5745.  
  5746.     # Generate copyright header for generated Makefile.in.
  5747.     # We do discard the output of predefined variables, handled below.
  5748.     $output_vars = ("# $in_file_name generated by automake "
  5749.            . $VERSION . " from $am_file_name.\n");
  5750.     $output_vars .= '# ' . subst ('configure_input') . "\n";
  5751.     $output_vars .= $gen_copyright;
  5752.  
  5753.     # We want to predefine as many variables as possible.  This lets
  5754.     # the user set them with `+=' in Makefile.am.
  5755.     &define_standard_variables;
  5756.  
  5757.     # Read user file, which might override some of our values.
  5758.     &read_am_file ($amfile, new Automake::Location);
  5759. }
  5760.  
  5761.  
  5762.  
  5763. ################################################################
  5764.  
  5765. # $FLATTENED
  5766. # &flatten ($STRING)
  5767. # ------------------
  5768. # Flatten the $STRING and return the result.
  5769. sub flatten
  5770. {
  5771.   $_ = shift;
  5772.  
  5773.   s/\\\n//somg;
  5774.   s/\s+/ /g;
  5775.   s/^ //;
  5776.   s/ $//;
  5777.  
  5778.   return $_;
  5779. }
  5780.  
  5781.  
  5782. # @PARAGRAPHS
  5783. # &make_paragraphs ($MAKEFILE, [%TRANSFORM])
  5784. # ------------------------------------------
  5785. # Load a $MAKEFILE, apply the %TRANSFORM, and return it as a list of
  5786. # paragraphs.
  5787. sub make_paragraphs ($%)
  5788. {
  5789.   my ($file, %transform) = @_;
  5790.  
  5791.   # Complete %transform with global options and make it a Perl
  5792.   # $command.
  5793.   my $command =
  5794.     "s/$IGNORE_PATTERN//gm;"
  5795.     . transform (%transform,
  5796.          'CYGNUS'      => !! option 'cygnus',
  5797.          'MAINTAINER-MODE'
  5798.          => $seen_maint_mode ? subst ('MAINTAINER_MODE_TRUE') : '',
  5799.  
  5800.          'BZIP2'       => !! option 'dist-bzip2',
  5801.          'COMPRESS'    => !! option 'dist-tarZ',
  5802.          'GZIP'        =>  ! option 'no-dist-gzip',
  5803.          'SHAR'        => !! option 'dist-shar',
  5804.          'ZIP'         => !! option 'dist-zip',
  5805.  
  5806.          'INSTALL-INFO' =>  ! option 'no-installinfo',
  5807.          'INSTALL-MAN'  =>  ! option 'no-installman',
  5808.          'CK-NEWS'      => !! option 'check-news',
  5809.  
  5810.          'SUBDIRS'      => !! var ('SUBDIRS'),
  5811.          'TOPDIR'       => backname ($relative_dir),
  5812.          'TOPDIR_P'     => $relative_dir eq '.',
  5813.  
  5814.          'BUILD'    => $seen_canonical == AC_CANONICAL_SYSTEM,
  5815.          'HOST'     => $seen_canonical,
  5816.          'TARGET'   => $seen_canonical == AC_CANONICAL_SYSTEM,
  5817.  
  5818.          'LIBTOOL'      => !! var ('LIBTOOL'))
  5819.     # We don't need more than two consecutive new-lines.
  5820.     . 's/\n{3,}/\n\n/g';
  5821.  
  5822.   # Swallow the file and apply the COMMAND.
  5823.   my $fc_file = new Automake::XFile "< $file";
  5824.   # Looks stupid?
  5825.   verb "reading $file";
  5826.   my $saved_dollar_slash = $/;
  5827.   undef $/;
  5828.   $_ = $fc_file->getline;
  5829.   $/ = $saved_dollar_slash;
  5830.   eval $command;
  5831.   $fc_file->close;
  5832.   my $content = $_;
  5833.  
  5834.   # Split at unescaped new lines.
  5835.   my @lines = split (/(?<!\\)\n/, $content);
  5836.   my @res;
  5837.  
  5838.   while (defined ($_ = shift @lines))
  5839.     {
  5840.       my $paragraph = "$_";
  5841.       # If we are a rule, eat as long as we start with a tab.
  5842.       if (/$RULE_PATTERN/smo)
  5843.     {
  5844.       while (defined ($_ = shift @lines) && $_ =~ /^\t/)
  5845.         {
  5846.           $paragraph .= "\n$_";
  5847.         }
  5848.       unshift (@lines, $_);
  5849.     }
  5850.  
  5851.       # If we are a comments, eat as much comments as you can.
  5852.       elsif (/$COMMENT_PATTERN/smo)
  5853.     {
  5854.       while (defined ($_ = shift @lines)
  5855.          && $_ =~ /$COMMENT_PATTERN/smo)
  5856.         {
  5857.           $paragraph .= "\n$_";
  5858.         }
  5859.       unshift (@lines, $_);
  5860.     }
  5861.  
  5862.       push @res, $paragraph;
  5863.       $paragraph = '';
  5864.     }
  5865.  
  5866.   return @res;
  5867. }
  5868.  
  5869.  
  5870.  
  5871. # ($COMMENT, $VARIABLES, $RULES)
  5872. # &file_contents_internal ($IS_AM, $FILE, $WHERE, [%TRANSFORM])
  5873. # -------------------------------------------------------------
  5874. # Return contents of a file from $libdir/am, automatically skipping
  5875. # macros or rules which are already known. $IS_AM iff the caller is
  5876. # reading an Automake file (as opposed to the user's Makefile.am).
  5877. sub file_contents_internal ($$$%)
  5878. {
  5879.     my ($is_am, $file, $where, %transform) = @_;
  5880.  
  5881.     $where->set ($file);
  5882.  
  5883.     my $result_vars = '';
  5884.     my $result_rules = '';
  5885.     my $comment = '';
  5886.     my $spacing = '';
  5887.  
  5888.     # The following flags are used to track rules spanning across
  5889.     # multiple paragraphs.
  5890.     my $is_rule = 0;        # 1 if we are processing a rule.
  5891.     my $discard_rule = 0;    # 1 if the current rule should not be output.
  5892.  
  5893.     # We save the conditional stack on entry, and then check to make
  5894.     # sure it is the same on exit.  This lets us conditionally include
  5895.     # other files.
  5896.     my @saved_cond_stack = @cond_stack;
  5897.     my $cond = new Automake::Condition (@cond_stack);
  5898.  
  5899.     foreach (make_paragraphs ($file, %transform))
  5900.     {
  5901.         # FIXME: no line number available.
  5902.         $where->set ($file);
  5903.  
  5904.         # Sanity checks.
  5905.     error $where, "blank line following trailing backslash:\n$_"
  5906.       if /\\$/;
  5907.     error $where, "comment following trailing backslash:\n$_"
  5908.       if /\\#/;
  5909.  
  5910.      if (/^$/)
  5911.      {
  5912.         $is_rule = 0;
  5913.          # Stick empty line before the incoming macro or rule.
  5914.          $spacing = "\n";
  5915.      }
  5916.      elsif (/$COMMENT_PATTERN/mso)
  5917.      {
  5918.         $is_rule = 0;
  5919.          # Stick comments before the incoming macro or rule.
  5920.          $comment = "$_\n";
  5921.     }
  5922.  
  5923.     # Handle inclusion of other files.
  5924.         elsif (/$INCLUDE_PATTERN/o)
  5925.         {
  5926.         if ($cond != FALSE)
  5927.           {
  5928.         my $file = ($is_am ? "$libdir/am/" : '') . $1;
  5929.         $where->push_context ("`$file' included from here");
  5930.         # N-ary `.=' fails.
  5931.         my ($com, $vars, $rules)
  5932.           = file_contents_internal ($is_am, $file, $where, %transform);
  5933.         $where->pop_context;
  5934.         $comment .= $com;
  5935.         $result_vars .= $vars;
  5936.         $result_rules .= $rules;
  5937.           }
  5938.         }
  5939.  
  5940.         # Handling the conditionals.
  5941.         elsif (/$IF_PATTERN/o)
  5942.       {
  5943.         $cond = cond_stack_if ($1, $2, $file);
  5944.       }
  5945.     elsif (/$ELSE_PATTERN/o)
  5946.       {
  5947.         $cond = cond_stack_else ($1, $2, $file);
  5948.       }
  5949.     elsif (/$ENDIF_PATTERN/o)
  5950.       {
  5951.         $cond = cond_stack_endif ($1, $2, $file);
  5952.       }
  5953.  
  5954.         # Handling rules.
  5955.      elsif (/$RULE_PATTERN/mso)
  5956.      {
  5957.       $is_rule = 1;
  5958.       $discard_rule = 0;
  5959.       # Separate relationship from optional actions: the first
  5960.       # `new-line tab" not preceded by backslash (continuation
  5961.       # line).
  5962.       my $paragraph = $_;
  5963.       /^(.*?)(?:(?<!\\)\n(\t.*))?$/s;
  5964.       my ($relationship, $actions) = ($1, $2 || '');
  5965.  
  5966.       # Separate targets from dependencies: the first colon.
  5967.       $relationship =~ /^([^:]+\S+) *: *(.*)$/som;
  5968.       my ($targets, $dependencies) = ($1, $2);
  5969.       # Remove the escaped new lines.
  5970.       # I don't know why, but I have to use a tmp $flat_deps.
  5971.       my $flat_deps = &flatten ($dependencies);
  5972.       my @deps = split (' ', $flat_deps);
  5973.  
  5974.       foreach (split (' ' , $targets))
  5975.         {
  5976.           # FIXME: 1. We are not robust to people defining several targets
  5977.           # at once, only some of them being in %dependencies.  The
  5978.           # actions from the targets in %dependencies are usually generated
  5979.           # from the content of %actions, but if some targets in $targets
  5980.           # are not in %dependencies the ELSE branch will output
  5981.           # a rule for all $targets (i.e. the targets which are both
  5982.           # in %dependencies and $targets will have two rules).
  5983.  
  5984.           # FIXME: 2. The logic here is not able to output a
  5985.           # multi-paragraph rule several time (e.g. for each condition
  5986.           # it is defined for) because it only knows the first paragraph.
  5987.  
  5988.           # FIXME: 3. We are not robust to people defining a subset
  5989.           # of a previously defined "multiple-target" rule.  E.g.
  5990.           # `foo:' after `foo bar:'.
  5991.  
  5992.           # Output only if not in FALSE.
  5993.           if (defined $dependencies{$_} && $cond != FALSE)
  5994.         {
  5995.           &depend ($_, @deps);
  5996.           if ($actions{$_})
  5997.             {
  5998.               $actions{$_} .= "\n$actions" if $actions;
  5999.             }
  6000.           else
  6001.             {
  6002.               $actions{$_} = $actions;
  6003.             }
  6004.         }
  6005.           else
  6006.         {
  6007.           # Free-lance dependency.  Output the rule for all the
  6008.           # targets instead of one by one.
  6009.           my @undefined_conds =
  6010.             Automake::Rule::define ($targets, $file,
  6011.                         $is_am ? RULE_AUTOMAKE : RULE_USER,
  6012.                         $cond, $where);
  6013.           for my $undefined_cond (@undefined_conds)
  6014.             {
  6015.               my $condparagraph = $paragraph;
  6016.               $condparagraph =~ s/^/$undefined_cond->subst_string/gme;
  6017.               $result_rules .= "$spacing$comment$condparagraph\n";
  6018.             }
  6019.           if (scalar @undefined_conds == 0)
  6020.             {
  6021.               # Remember to discard next paragraphs
  6022.               # if they belong to this rule.
  6023.               # (but see also FIXME: #2 above.)
  6024.               $discard_rule = 1;
  6025.             }
  6026.           $comment = $spacing = '';
  6027.           last;
  6028.         }
  6029.         }
  6030.      }
  6031.  
  6032.      elsif (/$ASSIGNMENT_PATTERN/mso)
  6033.      {
  6034.         my ($var, $type, $val) = ($1, $2, $3);
  6035.          error $where, "variable `$var' with trailing backslash"
  6036.           if /\\$/;
  6037.  
  6038.         $is_rule = 0;
  6039.  
  6040.         Automake::Variable::define ($var,
  6041.                     $is_am ? VAR_AUTOMAKE : VAR_MAKEFILE,
  6042.                     $type, $cond, $val, $comment, $where,
  6043.                     VAR_ASIS)
  6044.           if $cond != FALSE;
  6045.  
  6046.          $comment = $spacing = '';
  6047.      }
  6048.      else
  6049.      {
  6050.         # This isn't an error; it is probably some tokens which
  6051.         # configure is supposed to replace, such as `@SET-MAKE@',
  6052.         # or some part of a rule cut by an if/endif.
  6053.           if (! $cond->false && ! ($is_rule && $discard_rule))
  6054.           {
  6055.         s/^/$cond->subst_string/gme;
  6056.         $result_rules .= "$spacing$comment$_\n";
  6057.           }
  6058.          $comment = $spacing = '';
  6059.      }
  6060.     }
  6061.  
  6062.     error ($where, @cond_stack ?
  6063.        "unterminated conditionals: @cond_stack" :
  6064.        "too many conditionals closed in include file")
  6065.       if "@saved_cond_stack" ne "@cond_stack";
  6066.  
  6067.     return ($comment, $result_vars, $result_rules);
  6068. }
  6069.  
  6070.  
  6071. # $CONTENTS
  6072. # &file_contents ($BASENAME, $WHERE, [%TRANSFORM])
  6073. # ------------------------------------------------
  6074. # Return contents of a file from $libdir/am, automatically skipping
  6075. # macros or rules which are already known.
  6076. sub file_contents ($$%)
  6077. {
  6078.     my ($basename, $where, %transform) = @_;
  6079.     my ($comments, $variables, $rules) =
  6080.       file_contents_internal (1, "$libdir/am/$basename.am", $where,
  6081.                   %transform);
  6082.     return "$comments$variables$rules";
  6083. }
  6084.  
  6085.  
  6086. # $REGEXP
  6087. # &transform (%PAIRS)
  6088. # -------------------
  6089. # For each ($TOKEN, $VAL) in %PAIRS produce a replacement expression
  6090. # suitable for file_contents which:
  6091. #   - replaces %$TOKEN% with $VAL,
  6092. #   - enables/disables ?$TOKEN? and ?!$TOKEN?,
  6093. #   - replaces %?$TOKEN% with TRUE or FALSE.
  6094. sub transform (%)
  6095. {
  6096.   my (%pairs) = @_;
  6097.   my $result = '';
  6098.  
  6099.   while (my ($token, $val) = each %pairs)
  6100.     {
  6101.       $result .= "s/\Q%$token%\E/\Q$val\E/gm;";
  6102.       if ($val)
  6103.     {
  6104.       $result .= "s/\Q?$token?\E//gm;s/^.*\Q?!$token?\E.*\\n//gm;";
  6105.       $result .= "s/\Q%?$token%\E/TRUE/gm;";
  6106.     }
  6107.       else
  6108.     {
  6109.       $result .= "s/\Q?!$token?\E//gm;s/^.*\Q?$token?\E.*\\n//gm;";
  6110.       $result .= "s/\Q%?$token%\E/FALSE/gm;";
  6111.     }
  6112.     }
  6113.  
  6114.   return $result;
  6115. }
  6116.  
  6117.  
  6118. # &append_exeext ($MACRO)
  6119. # -----------------------
  6120. # Macro is an Automake magic macro which primary is PROGRAMS, e.g.
  6121. # bin_PROGRAMS.  Make sure these programs have $(EXEEXT) appended.
  6122. sub append_exeext ($)
  6123. {
  6124.   my ($macro) = @_;
  6125.  
  6126.   prog_error "append_exeext ($macro)"
  6127.     unless $macro =~ /_PROGRAMS$/;
  6128.  
  6129.   transform_variable_recursively
  6130.     ($macro, $macro, 'am__EXEEXT', 0, INTERNAL,
  6131.      sub {
  6132.        my ($subvar, $val, $cond, $full_cond) = @_;
  6133.        # Append $(EXEEXT) unless the user did it already, or it's a
  6134.        # @substitution@.
  6135.        $val .= '$(EXEEXT)' unless $val =~ /(?:\$\(EXEEXT\)$|^[@]\w+[@]$)/;
  6136.        return $val;
  6137.      });
  6138. }
  6139.  
  6140.  
  6141. # @PREFIX
  6142. # &am_primary_prefixes ($PRIMARY, $CAN_DIST, @PREFIXES)
  6143. # -----------------------------------------------------
  6144. # Find all variable prefixes that are used for install directories.  A
  6145. # prefix `zar' qualifies iff:
  6146. #
  6147. # * `zardir' is a variable.
  6148. # * `zar_PRIMARY' is a variable.
  6149. #
  6150. # As a side effect, it looks for misspellings.  It is an error to have
  6151. # a variable ending in a "reserved" suffix whose prefix is unknown, e.g.
  6152. # "bin_PROGRAMS".  However, unusual prefixes are allowed if a variable
  6153. # of the same name (with "dir" appended) exists.  For instance, if the
  6154. # variable "zardir" is defined, then "zar_PROGRAMS" becomes valid.
  6155. # This is to provide a little extra flexibility in those cases which
  6156. # need it.
  6157. sub am_primary_prefixes ($$@)
  6158. {
  6159.   my ($primary, $can_dist, @prefixes) = @_;
  6160.  
  6161.   local $_;
  6162.   my %valid = map { $_ => 0 } @prefixes;
  6163.   $valid{'EXTRA'} = 0;
  6164.   foreach my $var (variables)
  6165.     {
  6166.       # Automake is allowed to define variables that look like primaries
  6167.       # but which aren't.  E.g. INSTALL_sh_DATA.
  6168.       # Autoconf can also define variables like INSTALL_DATA, so
  6169.       # ignore all configure variables (at least those which are not
  6170.       # redefined in Makefile.am).
  6171.       # FIXME: We should make sure that these variables are not
  6172.       # conditionally defined (or else adjust the condition below).
  6173.       my $def = $var->def (TRUE);
  6174.       next if $def && $def->owner != VAR_MAKEFILE;
  6175.  
  6176.       my $varname = $var->name;
  6177.  
  6178.       if ($varname =~ /^(nobase_)?(dist_|nodist_)?(.*)_$primary$/)
  6179.     {
  6180.       my ($base, $dist, $X) = ($1 || '', $2 || '', $3 || '');
  6181.       if ($dist ne '' && ! $can_dist)
  6182.             {
  6183.           err_var ($var,
  6184.                "invalid variable `$varname': `dist' is forbidden");
  6185.         }
  6186.       # Standard directories must be explicitly allowed.
  6187.       elsif (! defined $valid{$X} && exists $standard_prefix{$X})
  6188.         {
  6189.           err_var ($var,
  6190.                "`${X}dir' is not a legitimate directory " .
  6191.                "for `$primary'");
  6192.         }
  6193.       # A not explicitly valid directory is allowed if Xdir is defined.
  6194.       elsif (! defined $valid{$X} &&
  6195.          $var->requires_variables ("`$varname' is used", "${X}dir"))
  6196.         {
  6197.           # Nothing to do.  Any error message has been output
  6198.           # by $var->requires_variables.
  6199.         }
  6200.       else
  6201.         {
  6202.           # Ensure all extended prefixes are actually used.
  6203.           $valid{"$base$dist$X"} = 1;
  6204.         }
  6205.     }
  6206.     }
  6207.  
  6208.   # Return only those which are actually defined.
  6209.   return sort grep { var ($_ . '_' . $primary) } keys %valid;
  6210. }
  6211.  
  6212.  
  6213. # Handle `where_HOW' variable magic.  Does all lookups, generates
  6214. # install code, and possibly generates code to define the primary
  6215. # variable.  The first argument is the name of the .am file to munge,
  6216. # the second argument is the primary variable (e.g. HEADERS), and all
  6217. # subsequent arguments are possible installation locations.
  6218. #
  6219. # Returns list of [$location, $value] pairs, where
  6220. # $value's are the values in all where_HOW variable, and $location
  6221. # there associated location (the place here their parent variables were
  6222. # defined).
  6223. #
  6224. # FIXME: this should be rewritten to be cleaner.  It should be broken
  6225. # up into multiple functions.
  6226. #
  6227. # Usage is: am_install_var (OPTION..., file, HOW, where...)
  6228. sub am_install_var
  6229. {
  6230.   my (@args) = @_;
  6231.  
  6232.   my $do_require = 1;
  6233.   my $can_dist = 0;
  6234.   my $default_dist = 0;
  6235.   while (@args)
  6236.     {
  6237.       if ($args[0] eq '-noextra')
  6238.     {
  6239.       $do_require = 0;
  6240.     }
  6241.       elsif ($args[0] eq '-candist')
  6242.     {
  6243.       $can_dist = 1;
  6244.     }
  6245.       elsif ($args[0] eq '-defaultdist')
  6246.     {
  6247.       $default_dist = 1;
  6248.       $can_dist = 1;
  6249.     }
  6250.       elsif ($args[0] !~ /^-/)
  6251.     {
  6252.       last;
  6253.     }
  6254.       shift (@args);
  6255.     }
  6256.  
  6257.   my ($file, $primary, @prefix) = @args;
  6258.  
  6259.   # Now that configure substitutions are allowed in where_HOW
  6260.   # variables, it is an error to actually define the primary.  We
  6261.   # allow `JAVA', as it is customarily used to mean the Java
  6262.   # interpreter.  This is but one of several Java hacks.  Similarly,
  6263.   # `PYTHON' is customarily used to mean the Python interpreter.
  6264.   reject_var $primary, "`$primary' is an anachronism"
  6265.     unless $primary eq 'JAVA' || $primary eq 'PYTHON';
  6266.  
  6267.   # Get the prefixes which are valid and actually used.
  6268.   @prefix = am_primary_prefixes ($primary, $can_dist, @prefix);
  6269.  
  6270.   # If a primary includes a configure substitution, then the EXTRA_
  6271.   # form is required.  Otherwise we can't properly do our job.
  6272.   my $require_extra;
  6273.  
  6274.   my @used = ();
  6275.   my @result = ();
  6276.  
  6277.   # True if the iteration is the first one.  Used for instance to
  6278.   # output parts of the associated file only once.
  6279.   my $first = 1;
  6280.   foreach my $X (@prefix)
  6281.     {
  6282.       my $nodir_name = $X;
  6283.       my $one_name = $X . '_' . $primary;
  6284.       my $one_var = var $one_name;
  6285.  
  6286.       my $strip_subdir = 1;
  6287.       # If subdir prefix should be preserved, do so.
  6288.       if ($nodir_name =~ /^nobase_/)
  6289.     {
  6290.       $strip_subdir = 0;
  6291.       $nodir_name =~ s/^nobase_//;
  6292.     }
  6293.  
  6294.       # If files should be distributed, do so.
  6295.       my $dist_p = 0;
  6296.       if ($can_dist)
  6297.     {
  6298.       $dist_p = (($default_dist && $nodir_name !~ /^nodist_/)
  6299.              || (! $default_dist && $nodir_name =~ /^dist_/));
  6300.       $nodir_name =~ s/^(dist|nodist)_//;
  6301.     }
  6302.  
  6303.  
  6304.       # Use the location of the currently processed variable.
  6305.       # We are not processing a particular condition, so pick the first
  6306.       # available.
  6307.       my $tmpcond = $one_var->conditions->one_cond;
  6308.       my $where = $one_var->rdef ($tmpcond)->location->clone;
  6309.  
  6310.       # Append actual contents of where_PRIMARY variable to
  6311.       # @result, skipping @substitutions@.
  6312.       foreach my $locvals ($one_var->value_as_list_recursive (location => 1))
  6313.     {
  6314.       my ($loc, $value) = @$locvals;
  6315.       # Skip configure substitutions.
  6316.       if ($value =~ /^\@.*\@$/)
  6317.         {
  6318.           if ($nodir_name eq 'EXTRA')
  6319.         {
  6320.           error ($where,
  6321.              "`$one_name' contains configure substitution, "
  6322.              . "but shouldn't");
  6323.         }
  6324.           # Check here to make sure variables defined in
  6325.           # configure.ac do not imply that EXTRA_PRIMARY
  6326.           # must be defined.
  6327.           elsif (! defined $configure_vars{$one_name})
  6328.         {
  6329.           $require_extra = $one_name
  6330.             if $do_require;
  6331.         }
  6332.         }
  6333.       else
  6334.         {
  6335.           push (@result, $locvals);
  6336.         }
  6337.     }
  6338.       # A blatant hack: we rewrite each _PROGRAMS primary to include
  6339.       # EXEEXT.
  6340.       append_exeext ($one_name)
  6341.     if $primary eq 'PROGRAMS';
  6342.       # "EXTRA" shouldn't be used when generating clean targets,
  6343.       # all, or install targets.  We used to warn if EXTRA_FOO was
  6344.       # defined uselessly, but this was annoying.
  6345.       next
  6346.     if $nodir_name eq 'EXTRA';
  6347.  
  6348.       if ($nodir_name eq 'check')
  6349.     {
  6350.       push (@check, '$(' . $one_name . ')');
  6351.     }
  6352.       else
  6353.     {
  6354.       push (@used, '$(' . $one_name . ')');
  6355.     }
  6356.  
  6357.       # Is this to be installed?
  6358.       my $install_p = $nodir_name ne 'noinst' && $nodir_name ne 'check';
  6359.  
  6360.       # If so, with install-exec? (or install-data?).
  6361.       my $exec_p = ($nodir_name =~ /$EXEC_DIR_PATTERN/o);
  6362.  
  6363.       my $check_options_p = $install_p && !! option 'std-options';
  6364.  
  6365.       # Use the location of the currently processed variable as context.
  6366.       $where->push_context ("while processing `$one_name'");
  6367.  
  6368.       # The variable containing all file to distribute.
  6369.       my $distvar = "\$($one_name)";
  6370.       $distvar = shadow_unconditionally ($one_name, $where)
  6371.     if ($dist_p && $one_var->has_conditional_contents);
  6372.  
  6373.       # Singular form of $PRIMARY.
  6374.       (my $one_primary = $primary) =~ s/S$//;
  6375.       $output_rules .= &file_contents ($file, $where,
  6376.                      FIRST => $first,
  6377.  
  6378.                      PRIMARY     => $primary,
  6379.                      ONE_PRIMARY => $one_primary,
  6380.                      DIR         => $X,
  6381.                      NDIR        => $nodir_name,
  6382.                      BASE        => $strip_subdir,
  6383.  
  6384.                      EXEC      => $exec_p,
  6385.                      INSTALL   => $install_p,
  6386.                      DIST      => $dist_p,
  6387.                          DISTVAR   => $distvar,
  6388.                      'CK-OPTS' => $check_options_p);
  6389.  
  6390.       $first = 0;
  6391.     }
  6392.  
  6393.   # The JAVA variable is used as the name of the Java interpreter.
  6394.   # The PYTHON variable is used as the name of the Python interpreter.
  6395.   if (@used && $primary ne 'JAVA' && $primary ne 'PYTHON')
  6396.     {
  6397.       # Define it.
  6398.       define_pretty_variable ($primary, TRUE, INTERNAL, @used);
  6399.       $output_vars .= "\n";
  6400.     }
  6401.  
  6402.   err_var ($require_extra,
  6403.        "`$require_extra' contains configure substitution,\n"
  6404.        . "but `EXTRA_$primary' not defined")
  6405.     if ($require_extra && ! var ('EXTRA_' . $primary));
  6406.  
  6407.   # Push here because PRIMARY might be configure time determined.
  6408.   push (@all, '$(' . $primary . ')')
  6409.     if @used && $primary ne 'JAVA' && $primary ne 'PYTHON';
  6410.  
  6411.   # Make the result unique.  This lets the user use conditionals in
  6412.   # a natural way, but still lets us program lazily -- we don't have
  6413.   # to worry about handling a particular object more than once.
  6414.   # We will keep only one location per object.
  6415.   my %result = ();
  6416.   for my $pair (@result)
  6417.     {
  6418.       my ($loc, $val) = @$pair;
  6419.       $result{$val} = $loc;
  6420.     }
  6421.   my @l = sort keys %result;
  6422.   return map { [$result{$_}->clone, $_] } @l;
  6423. }
  6424.  
  6425.  
  6426. ################################################################
  6427.  
  6428. # Each key in this hash is the name of a directory holding a
  6429. # Makefile.in.  These variables are local to `is_make_dir'.
  6430. my %make_dirs = ();
  6431. my $make_dirs_set = 0;
  6432.  
  6433. sub is_make_dir
  6434. {
  6435.     my ($dir) = @_;
  6436.     if (! $make_dirs_set)
  6437.     {
  6438.     foreach my $iter (@configure_input_files)
  6439.     {
  6440.         $make_dirs{dirname ($iter)} = 1;
  6441.     }
  6442.     # We also want to notice Makefile.in's.
  6443.     foreach my $iter (@other_input_files)
  6444.     {
  6445.         if ($iter =~ /Makefile\.in$/)
  6446.         {
  6447.         $make_dirs{dirname ($iter)} = 1;
  6448.         }
  6449.     }
  6450.     $make_dirs_set = 1;
  6451.     }
  6452.     return defined $make_dirs{$dir};
  6453. }
  6454.  
  6455. ################################################################
  6456.  
  6457. # This variable is local to the "require file" set of functions.
  6458. my @require_file_paths = ();
  6459.  
  6460.  
  6461. # &maybe_push_required_file ($DIR, $FILE, $FULLFILE)
  6462. # --------------------------------------------------
  6463. # See if we want to push this file onto dist_common.  This function
  6464. # encodes the rules for deciding when to do so.
  6465. sub maybe_push_required_file
  6466. {
  6467.   my ($dir, $file, $fullfile) = @_;
  6468.  
  6469.   if ($dir eq $relative_dir)
  6470.     {
  6471.       push_dist_common ($file);
  6472.       return 1;
  6473.     }
  6474.   elsif ($relative_dir eq '.' && ! &is_make_dir ($dir))
  6475.     {
  6476.       # If we are doing the topmost directory, and the file is in a
  6477.       # subdir which does not have a Makefile, then we distribute it
  6478.       # here.
  6479.  
  6480.       # If a required file is above the source tree, it is important
  6481.       # to prefix it with `$(srcdir)' so that no VPATH search is
  6482.       # performed.  Otherwise problems occur with Make implementations
  6483.       # that rewrite and simplify rules whose dependencies are found in a
  6484.       # VPATH location.  Here is an example with OSF1/Tru64 Make.
  6485.       #
  6486.       #   % cat Makefile
  6487.       #   VPATH = sub
  6488.       #   distdir: ../a
  6489.       #              echo ../a
  6490.       #   % ls
  6491.       #   Makefile a
  6492.       #   % make
  6493.       #   echo a
  6494.       #   a
  6495.       #
  6496.       # Dependency `../a' was found in `sub/../a', but this make
  6497.       # implementation simplified it as `a'.  (Note that the sub/
  6498.       # directory does not even exist.)
  6499.       #
  6500.       # This kind of VPATH rewriting seems hard to cancel.  The
  6501.       # distdir.am hack against VPATH rewriting works only when no
  6502.       # simplification is done, i.e., for dependencies which are in
  6503.       # subdirectories, not in enclosing directories.  Hence, in
  6504.       # the latter case we use a full path to make sure no VPATH
  6505.       # search occurs.
  6506.       $fullfile = '$(srcdir)/' . $fullfile
  6507.     if $dir =~ m,^\.\.(?:$|/),;
  6508.  
  6509.       push_dist_common ($fullfile);
  6510.       return 1;
  6511.     }
  6512.   return 0;
  6513. }
  6514.  
  6515.  
  6516. # &require_file_internal ($WHERE, $MYSTRICT, @FILES)
  6517. # --------------------------------------------------
  6518. # Verify that the file must exist in the current directory.
  6519. # $MYSTRICT is the strictness level at which this file becomes required.
  6520. #
  6521. # Must set require_file_paths before calling this function.
  6522. # require_file_paths is set to hold a single directory (the one in
  6523. # which the first file was found) before return.
  6524. sub require_file_internal ($$@)
  6525. {
  6526.     my ($where, $mystrict, @files) = @_;
  6527.  
  6528.     foreach my $file (@files)
  6529.     {
  6530.     my $fullfile;
  6531.     my $errdir;
  6532.     my $errfile;
  6533.     my $save_dir;
  6534.  
  6535.     my $found_it = 0;
  6536.     my $dangling_sym = 0;
  6537.     foreach my $dir (@require_file_paths)
  6538.     {
  6539.         $fullfile = $dir . "/" . $file;
  6540.         $errdir = $dir unless $errdir;
  6541.  
  6542.         # Use different name for "error filename".  Otherwise on
  6543.         # an error the bad file will be reported as e.g.
  6544.         # `../../install-sh' when using the default
  6545.         # config_aux_path.
  6546.         $errfile = $errdir . '/' . $file;
  6547.  
  6548.         if (-l $fullfile && ! -f $fullfile)
  6549.         {
  6550.         $dangling_sym = 1;
  6551.         last;
  6552.         }
  6553.         elsif (-f $fullfile)
  6554.         {
  6555.         $found_it = 1;
  6556.         maybe_push_required_file ($dir, $file, $fullfile);
  6557.         $save_dir = $dir;
  6558.         last;
  6559.         }
  6560.     }
  6561.  
  6562.     # `--force-missing' only has an effect if `--add-missing' is
  6563.     # specified.
  6564.     if ($found_it && (! $add_missing || ! $force_missing))
  6565.     {
  6566.         # Prune the path list.
  6567.         @require_file_paths = $save_dir;
  6568.     }
  6569.     else
  6570.     {
  6571.         # If we've already looked for it, we're done.  You might
  6572.         # wonder why we don't do this before searching for the
  6573.         # file.  If we do that, then something like
  6574.         # AC_OUTPUT(subdir/foo foo) will fail to put foo.in into
  6575.         # DIST_COMMON.
  6576.         if (! $found_it)
  6577.         {
  6578.         next if defined $require_file_found{$fullfile};
  6579.         $require_file_found{$fullfile} = 1;
  6580.         }
  6581.  
  6582.         if ($strictness >= $mystrict)
  6583.         {
  6584.         if ($dangling_sym && $add_missing)
  6585.         {
  6586.             unlink ($fullfile);
  6587.         }
  6588.  
  6589.         my $trailer = '';
  6590.         my $suppress = 0;
  6591.  
  6592.         # Only install missing files according to our desired
  6593.         # strictness level.
  6594.         my $message = "required file `$errfile' not found";
  6595.         if ($add_missing)
  6596.         {
  6597.             if (-f ("$libdir/$file"))
  6598.             {
  6599.                 $suppress = 1;
  6600.  
  6601.             # Install the missing file.  Symlink if we
  6602.             # can, copy if we must.  Note: delete the file
  6603.             # first, in case it is a dangling symlink.
  6604.             $message = "installing `$errfile'";
  6605.             # Windows Perl will hang if we try to delete a
  6606.             # file that doesn't exist.
  6607.             unlink ($errfile) if -f $errfile;
  6608.             if ($symlink_exists && ! $copy_missing)
  6609.             {
  6610.                 if (! symlink ("$libdir/$file", $errfile))
  6611.                 {
  6612.                 $suppress = 0;
  6613.                 $trailer = "; error while making link: $!";
  6614.                 }
  6615.             }
  6616.             elsif (system ('cp', "$libdir/$file", $errfile))
  6617.             {
  6618.                 $suppress = 0;
  6619.                 $trailer = "\n    error while copying";
  6620.             }
  6621.             }
  6622.  
  6623.             if (! maybe_push_required_file (dirname ($errfile),
  6624.                                                     $file, $errfile))
  6625.             {
  6626.             if (! $found_it)
  6627.             {
  6628.                 # We have added the file but could not push it
  6629.                 # into DIST_COMMON (probably because this is
  6630.                 # an auxiliary file and we are not processing
  6631.                 # the top level Makefile). This is unfortunate,
  6632.                 # since it means we are using a file which is not
  6633.                 # distributed!
  6634.  
  6635.                 # Get Automake to be run again: on the second
  6636.                 # run the file will be found, and pushed into
  6637.                 # the toplevel DIST_COMMON automatically.
  6638.                 $automake_needs_to_reprocess_all_files = 1;
  6639.             }
  6640.             }
  6641.  
  6642.             # Prune the path list.
  6643.             @require_file_paths = &dirname ($errfile);
  6644.         }
  6645.  
  6646.         # If --force-missing was specified, and we have
  6647.         # actually found the file, then do nothing.
  6648.         next
  6649.             if $found_it && $force_missing;
  6650.  
  6651.         # If we couldn' install the file, but it is a target in
  6652.         # the Makefile, don't print anything.  This allows files
  6653.         # like README, AUTHORS, or THANKS to be generated.
  6654.         next
  6655.           if !$suppress && rule $file;
  6656.  
  6657.         msg ($suppress ? 'note' : 'error', $where, "$message$trailer");
  6658.         }
  6659.     }
  6660.     }
  6661. }
  6662.  
  6663. # &require_file ($WHERE, $MYSTRICT, @FILES)
  6664. # -----------------------------------------
  6665. sub require_file ($$@)
  6666. {
  6667.     my ($where, $mystrict, @files) = @_;
  6668.     @require_file_paths = $relative_dir;
  6669.     require_file_internal ($where, $mystrict, @files);
  6670. }
  6671.  
  6672. # &require_file_with_macro ($COND, $MACRO, $MYSTRICT, @FILES)
  6673. # -----------------------------------------------------------
  6674. sub require_file_with_macro ($$$@)
  6675. {
  6676.     my ($cond, $macro, $mystrict, @files) = @_;
  6677.     $macro = rvar ($macro) unless ref $macro;
  6678.     require_file ($macro->rdef ($cond)->location, $mystrict, @files);
  6679. }
  6680.  
  6681.  
  6682. # &require_conf_file ($WHERE, $MYSTRICT, @FILES)
  6683. # ----------------------------------------------
  6684. # Looks in configuration path, as specified by AC_CONFIG_AUX_DIR.
  6685. sub require_conf_file ($$@)
  6686. {
  6687.     my ($where, $mystrict, @files) = @_;
  6688.     @require_file_paths = @config_aux_path;
  6689.     require_file_internal ($where, $mystrict, @files);
  6690.     my $dir = $require_file_paths[0];
  6691.     @config_aux_path = @require_file_paths;
  6692.      # Avoid unsightly '/.'s.
  6693.     $config_aux_dir = '$(top_srcdir)' . ($dir eq '.' ? "" : "/$dir");
  6694. }
  6695.  
  6696.  
  6697. # &require_conf_file_with_macro ($COND, $MACRO, $MYSTRICT, @FILES)
  6698. # ----------------------------------------------------------------
  6699. sub require_conf_file_with_macro ($$$@)
  6700. {
  6701.     my ($cond, $macro, $mystrict, @files) = @_;
  6702.     require_conf_file (rvar ($macro)->rdef ($cond)->location,
  6703.                $mystrict, @files);
  6704. }
  6705.  
  6706. ################################################################
  6707.  
  6708. # &require_build_directory ($DIRECTORY)
  6709. # ------------------------------------
  6710. # Emit rules to create $DIRECTORY if needed, and return
  6711. # the file that any target requiring this directory should be made
  6712. # dependent upon.
  6713. sub require_build_directory ($)
  6714. {
  6715.   my $directory = shift;
  6716.   my $dirstamp = "$directory/\$(am__dirstamp)";
  6717.  
  6718.   # Don't emit the rule twice.
  6719.   if (! defined $directory_map{$directory})
  6720.     {
  6721.       $directory_map{$directory} = 1;
  6722.  
  6723.       # Set a variable for the dirstamp basename.
  6724.       define_pretty_variable ('am__dirstamp', TRUE, INTERNAL,
  6725.                   '$(am__leading_dot)dirstamp');
  6726.  
  6727.       # Directory must be removed by `make distclean'.
  6728.       $clean_files{$dirstamp} = DIST_CLEAN;
  6729.  
  6730.       $output_rules .= ("$dirstamp:\n"
  6731.             . "\t\@\$(mkdir_p) $directory\n"
  6732.             . "\t\@: > $dirstamp\n");
  6733.     }
  6734.  
  6735.   return $dirstamp;
  6736. }
  6737.  
  6738. # &require_build_directory_maybe ($FILE)
  6739. # --------------------------------------
  6740. # If $FILE lies in a subdirectory, emit a rule to create this
  6741. # directory and return the file that $FILE should be made
  6742. # dependent upon.  Otherwise, just return the empty string.
  6743. sub require_build_directory_maybe ($)
  6744. {
  6745.     my $file = shift;
  6746.     my $directory = dirname ($file);
  6747.  
  6748.     if ($directory ne '.')
  6749.     {
  6750.     return require_build_directory ($directory);
  6751.     }
  6752.     else
  6753.     {
  6754.     return '';
  6755.     }
  6756. }
  6757.  
  6758. ################################################################
  6759.  
  6760. # Push a list of files onto dist_common.
  6761. sub push_dist_common
  6762. {
  6763.   prog_error "push_dist_common run after handle_dist"
  6764.     if $handle_dist_run;
  6765.   Automake::Variable::define ('DIST_COMMON', VAR_AUTOMAKE, '+', TRUE, "@_",
  6766.                   '', INTERNAL, VAR_PRETTY);
  6767. }
  6768.  
  6769.  
  6770. ################################################################
  6771.  
  6772. # generate_makefile ($MAKEFILE_AM, $MAKEFILE_IN)
  6773. # ----------------------------------------------
  6774. # Generate a Makefile.in given the name of the corresponding Makefile and
  6775. # the name of the file output by config.status.
  6776. sub generate_makefile ($$)
  6777. {
  6778.   my ($makefile_am, $makefile_in) = @_;
  6779.  
  6780.   # Reset all the Makefile.am related variables.
  6781.   initialize_per_input;
  6782.  
  6783.   # AUTOMAKE_OPTIONS can contains -W flags to disable or enable
  6784.   # warnings for this file.  So hold any warning issued before
  6785.   # we have processed AUTOMAKE_OPTIONS.
  6786.   buffer_messages ('warning');
  6787.  
  6788.   # Name of input file ("Makefile.am") and output file
  6789.   # ("Makefile.in").  These have no directory components.
  6790.   $am_file_name = basename ($makefile_am);
  6791.   $in_file_name = basename ($makefile_in);
  6792.  
  6793.   # $OUTPUT is encoded.  If it contains a ":" then the first element
  6794.   # is the real output file, and all remaining elements are input
  6795.   # files.  We don't scan or otherwise deal with these input files,
  6796.   # other than to mark them as dependencies.  See
  6797.   # &scan_autoconf_files for details.
  6798.   my ($makefile, @inputs) = split (/:/, $output_files{$makefile_in});
  6799.  
  6800.   $relative_dir = dirname ($makefile);
  6801.   $am_relative_dir = dirname ($makefile_am);
  6802.  
  6803.   read_main_am_file ($makefile_am);
  6804.   if (handle_options)
  6805.     {
  6806.       # Process buffered warnings.
  6807.       flush_messages;
  6808.       # Fatal error.  Just return, so we can continue with next file.
  6809.       return;
  6810.     }
  6811.   # Process buffered warnings.
  6812.   flush_messages;
  6813.  
  6814.   # There are a few install-related variables that you should not define.
  6815.   foreach my $var ('PRE_INSTALL', 'POST_INSTALL', 'NORMAL_INSTALL')
  6816.     {
  6817.       my $v = var $var;
  6818.       if ($v)
  6819.     {
  6820.       my $def = $v->def (TRUE);
  6821.       prog_error "$var not defined in condition TRUE"
  6822.         unless $def;
  6823.       reject_var $var, "`$var' should not be defined"
  6824.         if $def->owner != VAR_AUTOMAKE;
  6825.     }
  6826.     }
  6827.  
  6828.   # Catch some obsolete variables.
  6829.   msg_var ('obsolete', 'INCLUDES',
  6830.        "`INCLUDES' is the old name for `AM_CPPFLAGS' (or `*_CPPFLAGS')")
  6831.     if var ('INCLUDES');
  6832.  
  6833.   # At the toplevel directory, we might need config.guess, config.sub
  6834.   # or libtool scripts (ltconfig and ltmain.sh).
  6835.   if ($relative_dir eq '.')
  6836.     {
  6837.       # AC_CANONICAL_HOST and AC_CANONICAL_SYSTEM need config.guess and
  6838.       # config.sub.
  6839.       require_conf_file ($canonical_location, FOREIGN,
  6840.              'config.guess', 'config.sub')
  6841.     if $seen_canonical;
  6842.     }
  6843.  
  6844.   # Must do this after reading .am file.
  6845.   define_variable ('subdir', $relative_dir, INTERNAL);
  6846.  
  6847.   # If DIST_SUBDIRS is defined, make sure SUBDIRS is, so that
  6848.   # recursive rules are enabled.
  6849.   define_pretty_variable ('SUBDIRS', TRUE, INTERNAL, '')
  6850.     if var 'DIST_SUBDIRS' && ! var 'SUBDIRS';
  6851.  
  6852.   # Check first, because we might modify some state.
  6853.   check_cygnus;
  6854.   check_gnu_standards;
  6855.   check_gnits_standards;
  6856.  
  6857.   handle_configure ($makefile_am, $makefile_in, $makefile, @inputs);
  6858.   handle_gettext;
  6859.   handle_libraries;
  6860.   handle_ltlibraries;
  6861.   handle_programs;
  6862.   handle_scripts;
  6863.  
  6864.   # This must run first so that the ANSI2KNR definition is generated
  6865.   # before it is used by the _.c rules.  We have to do this because
  6866.   # a variable which is used in a dependency must be defined before
  6867.   # the target, or else make won't properly see it.
  6868.   handle_compile;
  6869.   # This must be run after all the sources are scanned.
  6870.   handle_languages;
  6871.  
  6872.   # We have to run this after dealing with all the programs.
  6873.   handle_libtool;
  6874.  
  6875.   # Variables used by distdir.am and tags.am.
  6876.   define_pretty_variable ('SOURCES', TRUE, INTERNAL, @sources);
  6877.   define_pretty_variable ('DIST_SOURCES', TRUE, INTERNAL, @dist_sources);
  6878.  
  6879.   handle_multilib;
  6880.   handle_texinfo;
  6881.   handle_emacs_lisp;
  6882.   handle_python;
  6883.   handle_java;
  6884.   handle_man_pages;
  6885.   handle_data;
  6886.   handle_headers;
  6887.   handle_subdirs;
  6888.   handle_tags;
  6889.   handle_minor_options;
  6890.   handle_tests;
  6891.  
  6892.   # This must come after most other rules.
  6893.   handle_dist;
  6894.  
  6895.   handle_footer;
  6896.   do_check_merge_target;
  6897.   handle_all ($makefile);
  6898.  
  6899.   # FIXME: Gross!
  6900.   if (var ('lib_LTLIBRARIES') && var ('bin_PROGRAMS'))
  6901.     {
  6902.       $output_rules .= "install-binPROGRAMS: install-libLTLIBRARIES\n\n";
  6903.     }
  6904.  
  6905.   handle_install;
  6906.   handle_clean ($makefile);
  6907.   handle_factored_dependencies;
  6908.  
  6909.   # Comes last, because all the above procedures may have
  6910.   # defined or overridden variables.
  6911.   $output_vars .= output_variables;
  6912.  
  6913.   check_typos;
  6914.  
  6915.   if (! -d ($output_directory . '/' . $am_relative_dir))
  6916.     {
  6917.       mkdir ($output_directory . '/' . $am_relative_dir, 0755);
  6918.     }
  6919.  
  6920.   my ($out_file) = $output_directory . '/' . $makefile_in;
  6921.  
  6922.   # We make sure that `all:' is the first target.
  6923.   my $output =
  6924.     "$output_vars$output_all$output_header$output_rules$output_trailer";
  6925.  
  6926.   # Decide whether we must update the output file or not.
  6927.   # We have to update in the following situations.
  6928.   #  * $force_generation is set.
  6929.   #  * any of the output dependencies is younger than the output
  6930.   #  * the contents of the output is different (this can happen
  6931.   #    if the project has been populated with a file listed in
  6932.   #    @common_files since the last run).
  6933.   # Output's dependencies are split in two sets:
  6934.   #  * dependencies which are also configure dependencies
  6935.   #    These do not change between each Makefile.am
  6936.   #  * other dependencies, specific to the Makefile.am being processed
  6937.   #    (such as the Makefile.am itself, or any Makefile fragment
  6938.   #    it includes).
  6939.   my $timestamp = mtime $out_file;
  6940.   if (! $force_generation
  6941.       && $configure_deps_greatest_timestamp < $timestamp
  6942.       && $output_deps_greatest_timestamp < $timestamp
  6943.       && $output eq contents ($out_file))
  6944.   {
  6945.       verb "$out_file unchanged";
  6946.       # No need to update.
  6947.       return;
  6948.     }
  6949.  
  6950.   if (-e $out_file)
  6951.     {
  6952.       unlink ($out_file)
  6953.     or fatal "cannot remove $out_file: $!\n";
  6954.     }
  6955.  
  6956.   my $gm_file = new Automake::XFile "> $out_file";
  6957.   verb "creating $out_file";
  6958.   print $gm_file $output;
  6959. }
  6960.  
  6961. ################################################################
  6962.  
  6963.  
  6964.  
  6965.  
  6966. ################################################################
  6967.  
  6968. # Print usage information.
  6969. sub usage ()
  6970. {
  6971.     print "Usage: $0 [OPTION] ... [Makefile]...
  6972.  
  6973. Generate Makefile.in for configure from Makefile.am.
  6974.  
  6975. Operation modes:
  6976.       --help               print this help, then exit
  6977.       --version            print version number, then exit
  6978.   -v, --verbose            verbosely list files processed
  6979.       --no-force           only update Makefile.in's that are out of date
  6980.   -W, --warnings=CATEGORY  report the warnings falling in CATEGORY
  6981.  
  6982. Dependency tracking:
  6983.   -i, --ignore-deps      disable dependency tracking code
  6984.       --include-deps     enable dependency tracking code
  6985.  
  6986. Flavors:
  6987.       --cygnus           assume program is part of Cygnus-style tree
  6988.       --foreign          set strictness to foreign
  6989.       --gnits            set strictness to gnits
  6990.       --gnu              set strictness to gnu
  6991.  
  6992. Library files:
  6993.   -a, --add-missing      add missing standard files to package
  6994.       --libdir=DIR       directory storing library files
  6995.   -c, --copy             with -a, copy missing files (default is symlink)
  6996.   -f, --force-missing    force update of standard files
  6997.  
  6998. ";
  6999.     Automake::ChannelDefs::usage;
  7000.  
  7001.     my ($last, @lcomm);
  7002.     $last = '';
  7003.     foreach my $iter (sort ((@common_files, @common_sometimes)))
  7004.     {
  7005.     push (@lcomm, $iter) unless $iter eq $last;
  7006.     $last = $iter;
  7007.     }
  7008.  
  7009.     my @four;
  7010.     print "\nFiles which are automatically distributed, if found:\n";
  7011.     format USAGE_FORMAT =
  7012.   @<<<<<<<<<<<<<<<<   @<<<<<<<<<<<<<<<<   @<<<<<<<<<<<<<<<<   @<<<<<<<<<<<<<<<<
  7013.   $four[0],           $four[1],           $four[2],           $four[3]
  7014. .
  7015.     $~ = "USAGE_FORMAT";
  7016.  
  7017.     my $cols = 4;
  7018.     my $rows = int(@lcomm / $cols);
  7019.     my $rest = @lcomm % $cols;
  7020.  
  7021.     if ($rest)
  7022.     {
  7023.     $rows++;
  7024.     }
  7025.     else
  7026.     {
  7027.     $rest = $cols;
  7028.     }
  7029.  
  7030.     for (my $y = 0; $y < $rows; $y++)
  7031.     {
  7032.     @four = ("", "", "", "");
  7033.     for (my $x = 0; $x < $cols; $x++)
  7034.     {
  7035.         last if $y + 1 == $rows && $x == $rest;
  7036.  
  7037.         my $idx = (($x > $rest)
  7038.                ?  ($rows * $rest + ($rows - 1) * ($x - $rest))
  7039.                : ($rows * $x));
  7040.  
  7041.         $idx += $y;
  7042.         $four[$x] = $lcomm[$idx];
  7043.     }
  7044.     write;
  7045.     }
  7046.  
  7047.     print "\nReport bugs to <bug-automake\@gnu.org>.\n";
  7048.  
  7049.     # --help always returns 0 per GNU standards.
  7050.     exit 0;
  7051. }
  7052.  
  7053.  
  7054. # &version ()
  7055. # -----------
  7056. # Print version information
  7057. sub version ()
  7058. {
  7059.   print <<EOF;
  7060. automake (GNU $PACKAGE) $VERSION
  7061. Written by Tom Tromey <tromey\@redhat.com>.
  7062.  
  7063. Copyright 2004 Free Software Foundation, Inc.
  7064. This is free software; see the source for copying conditions.  There is NO
  7065. warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  7066. EOF
  7067.   # --version always returns 0 per GNU standards.
  7068.   exit 0;
  7069. }
  7070.  
  7071. ################################################################
  7072.  
  7073. # Parse command line.
  7074. sub parse_arguments ()
  7075. {
  7076.   # Start off as gnu.
  7077.   set_strictness ('gnu');
  7078.  
  7079.   my $cli_where = new Automake::Location;
  7080.   my %cli_options =
  7081.     (
  7082.      'libdir:s'     => \$libdir,
  7083.      'gnu'         => sub { set_strictness ('gnu'); },
  7084.      'gnits'         => sub { set_strictness ('gnits'); },
  7085.      'cygnus'             => sub { set_global_option ('cygnus', $cli_where); },
  7086.      'foreign'          => sub { set_strictness ('foreign'); },
  7087.      'include-deps'     => sub { unset_global_option ('no-dependencies'); },
  7088.      'i|ignore-deps'     => sub { set_global_option ('no-dependencies',
  7089.                             $cli_where); },
  7090.      'no-force'     => sub { $force_generation = 0; },
  7091.      'f|force-missing'  => \$force_missing,
  7092.      'o|output-dir:s'    => \$output_directory,
  7093.      'a|add-missing'     => \$add_missing,
  7094.      'c|copy'             => \$copy_missing,
  7095.      'v|verbose'     => sub { setup_channel 'verb', silent => 0; },
  7096.      'W|warnings:s'     => \&parse_warnings,
  7097.      # These long options (--Werror and --Wno-error) for backward
  7098.      # compatibility.  Use -Werror and -Wno-error today.
  7099.      'Werror'           => sub { parse_warnings 'W', 'error'; },
  7100.      'Wno-error'        => sub { parse_warnings 'W', 'no-error'; },
  7101.      );
  7102.   use Getopt::Long;
  7103.   Getopt::Long::config ("bundling", "pass_through");
  7104.  
  7105.   # See if --version or --help is used.  We want to process these before
  7106.   # anything else because the GNU Coding Standards require us to
  7107.   # `exit 0' after processing these options, and we can't guarantee this
  7108.   # if we treat other options first.  (Handling other options first
  7109.   # could produce error diagnostics, and in this condition it is
  7110.   # confusing if Automake does `exit 0'.)
  7111.   my %cli_options_1st_pass =
  7112.     (
  7113.      'version' => \&version,
  7114.      'help'    => \&usage,
  7115.      # Recognize all other options (and their arguments) but do nothing.
  7116.      map { $_ => sub {} } (keys %cli_options)
  7117.      );
  7118.   my @ARGV_backup = @ARGV;
  7119.   Getopt::Long::GetOptions %cli_options_1st_pass
  7120.     or exit 1;
  7121.   @ARGV = @ARGV_backup;
  7122.  
  7123.   # Now *really* process the options.  This time we know
  7124.   # that --help and --version are not present.
  7125.   Getopt::Long::GetOptions %cli_options
  7126.     or exit 1;
  7127.  
  7128.   if (defined $output_directory)
  7129.     {
  7130.       msg 'obsolete', "`--output-dir' is deprecated\n";
  7131.     }
  7132.   else
  7133.     {
  7134.       # In the next release we'll remove this entirely.
  7135.       $output_directory = '.';
  7136.     }
  7137.  
  7138.   my $errspec = 0;
  7139.   foreach my $arg (@ARGV)
  7140.     {
  7141.       if ($arg =~ /^-./)
  7142.     {
  7143.       fatal ("unrecognized option `$arg'\n"
  7144.          . "Try `$0 --help' for more information.");
  7145.     }
  7146.  
  7147.       # Handle $local:$input syntax.
  7148.       my ($local, @rest) = split (/:/, $arg);
  7149.       @rest = ("$local.in",) unless @rest;
  7150.       my $input = locate_am @rest;
  7151.       if ($input)
  7152.     {
  7153.       push @input_files, $input;
  7154.       $output_files{$input} = join (':', ($local, @rest));
  7155.     }
  7156.       else
  7157.     {
  7158.       error "no Automake input file found for `$arg'";
  7159.       $errspec = 1;
  7160.     }
  7161.     }
  7162.   fatal "no input file found among supplied arguments"
  7163.     if $errspec && ! @input_files;
  7164. }
  7165.  
  7166. ################################################################
  7167.  
  7168. # Parse the WARNINGS environment variable.
  7169. parse_WARNINGS;
  7170.  
  7171. # Parse command line.
  7172. parse_arguments;
  7173.  
  7174. $configure_ac = require_configure_ac;
  7175.  
  7176. # Do configure.ac scan only once.
  7177. scan_autoconf_files;
  7178.  
  7179. if (! @input_files)
  7180.   {
  7181.     my $msg = '';
  7182.     $msg = "\nDid you forget AC_CONFIG_FILES([Makefile]) in $configure_ac?"
  7183.       if -f 'Makefile.am';
  7184.     fatal ("no `Makefile.am' found for any configure output$msg");
  7185.   }
  7186.  
  7187. my $automake_has_run = 0;
  7188.  
  7189. do
  7190. {
  7191.   if ($automake_has_run)
  7192.     {
  7193.       verb 'processing Makefiles another time to fix them up.';
  7194.       prog_error 'running more than two times should never be needed.'
  7195.     if $automake_has_run >= 2;
  7196.     }
  7197.   $automake_needs_to_reprocess_all_files = 0;
  7198.  
  7199.   # Now do all the work on each file.
  7200.   foreach my $file (@input_files)
  7201.     {
  7202.       ($am_file = $file) =~ s/\.in$//;
  7203.       if (! -f ($am_file . '.am'))
  7204.     {
  7205.       error "`$am_file.am' does not exist";
  7206.     }
  7207.       else
  7208.     {
  7209.       # Any warning setting now local to this Makefile.am.
  7210.       dup_channel_setup;
  7211.  
  7212.       generate_makefile ($am_file . '.am', $file);
  7213.  
  7214.       # Back out any warning setting.
  7215.       drop_channel_setup;
  7216.     }
  7217.     }
  7218.   ++$automake_has_run;
  7219. }
  7220. while ($automake_needs_to_reprocess_all_files);
  7221.  
  7222. exit $exit_code;
  7223.  
  7224.  
  7225. ### Setup "GNU" style for perl-mode and cperl-mode.
  7226. ## Local Variables:
  7227. ## perl-indent-level: 2
  7228. ## perl-continued-statement-offset: 2
  7229. ## perl-continued-brace-offset: 0
  7230. ## perl-brace-offset: 0
  7231. ## perl-brace-imaginary-offset: 0
  7232. ## perl-label-offset: -2
  7233. ## cperl-indent-level: 2
  7234. ## cperl-brace-offset: 0
  7235. ## cperl-continued-brace-offset: 0
  7236. ## cperl-label-offset: -2
  7237. ## cperl-extra-newline-before-brace: t
  7238. ## cperl-merge-trailing-else: nil
  7239. ## cperl-continued-statement-offset: 2
  7240. ## End:
  7241.